1 //===--- raw_os_ostream.cpp - Implement the raw_os_ostream class ----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This implements support adapting raw_ostream to std::ostream.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Support/raw_os_ostream.h"
18 //===----------------------------------------------------------------------===//
20 //===----------------------------------------------------------------------===//
22 raw_os_ostream::~raw_os_ostream() {
26 void raw_os_ostream::write_impl(const char *Ptr
, size_t Size
) {
30 uint64_t raw_os_ostream::current_pos() const { return OS
.tellp(); }