llvm/llvm/lib/Support/circular_raw_ostream.cpp

//===- circular_raw_ostream.cpp - Implement circular_raw_ostream ----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This implements support for circular buffered streams.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/circular_raw_ostream.h"
#include <algorithm>
usingnamespacellvm;

void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) {}

void circular_raw_ostream::flushBufferWithBanner() {}