2
0

raw_os_ostream.cpp 967 B

123456789101112131415161718192021222324252627282930
  1. //===--- raw_os_ostream.cpp - Implement the raw_os_ostream class ----------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // This implements support adapting raw_ostream to std::ostream.
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #include "llvm/Support/raw_os_ostream.h"
  14. #include <ostream>
  15. using namespace llvm;
  16. //===----------------------------------------------------------------------===//
  17. // raw_os_ostream
  18. //===----------------------------------------------------------------------===//
  19. raw_os_ostream::~raw_os_ostream() {
  20. flush();
  21. }
  22. void raw_os_ostream::write_impl(const char *Ptr, size_t Size) {
  23. OS.write(Ptr, Size);
  24. }
  25. uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); }