diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-12-07 23:41:45 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-12-07 23:41:45 +0000 |
commit | 30c0f3367c85da442008031aac69ea0f0e5c43ba (patch) | |
tree | caf54b1bc7a8eee74da385a642ed498cf8135738 /llvm/lib/Support/Statistic.cpp | |
parent | 4c36e6bee04c39a980d37f0eec8d9259e0a4b3d2 (diff) | |
download | llvm-30c0f3367c85da442008031aac69ea0f0e5c43ba.zip llvm-30c0f3367c85da442008031aac69ea0f0e5c43ba.tar.gz llvm-30c0f3367c85da442008031aac69ea0f0e5c43ba.tar.bz2 |
Don't use <sstream> in Streams.h but <iosfwd> instead.
llvm-svn: 32340
Diffstat (limited to 'llvm/lib/Support/Statistic.cpp')
-rw-r--r-- | llvm/lib/Support/Statistic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Statistic.cpp b/llvm/lib/Support/Statistic.cpp index 8c08271..1b28eed 100644 --- a/llvm/lib/Support/Statistic.cpp +++ b/llvm/lib/Support/Statistic.cpp @@ -26,6 +26,7 @@ #include "llvm/Support/Streams.h" #include "llvm/ADT/StringExtras.h" #include <algorithm> +#include <ostream> using namespace llvm; // GetLibSupportInfoOutputFile - Return a file stream to print our output on... |