From 06fa1768620138a57dcad5277b0a3dd0adb505cc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 24 Aug 2009 03:52:50 +0000 Subject: prune the #includes in raw_ostream.h by moving a member out of line. ftostr is not particularly speedy, so that method is presumably not perf sensitive. llvm-svn: 79885 --- llvm/lib/Support/raw_ostream.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'llvm/lib/Support/raw_ostream.cpp') diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 221859d..4dd891d6 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -19,6 +19,7 @@ #include "llvm/Config/config.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/ErrorHandling.h" +#include "llvm/ADT/StringExtras.h" #include #include #include @@ -173,6 +174,13 @@ raw_ostream &raw_ostream::operator<<(const void *P) { return write_hex((uintptr_t) P); } +raw_ostream &raw_ostream::operator<<(double N) { + this->operator<<(ftostr(N)); + return *this; +} + + + void raw_ostream::flush_nonempty() { assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); size_t Length = OutBufCur - OutBufStart; -- cgit v1.1