Changes in directory llvm/lib/Support:

Allocator.cpp updated: 1.4 -> 1.5
CommandLine.cpp updated: 1.80 -> 1.81
PluginLoader.cpp updated: 1.20 -> 1.21
Statistic.cpp updated: 1.21 -> 1.22
SystemUtils.cpp updated: 1.48 -> 1.49
---
Log message:

Don't use <sstream> in Streams.h but <iosfwd> instead.


---
Diffs of the changes:  (+5 -0)

 Allocator.cpp    |    1 +
 CommandLine.cpp  |    1 +
 PluginLoader.cpp |    1 +
 Statistic.cpp    |    1 +
 SystemUtils.cpp  |    1 +
 5 files changed, 5 insertions(+)


Index: llvm/lib/Support/Allocator.cpp
diff -u llvm/lib/Support/Allocator.cpp:1.4 llvm/lib/Support/Allocator.cpp:1.5
--- llvm/lib/Support/Allocator.cpp:1.4  Wed Dec  6 19:30:31 2006
+++ llvm/lib/Support/Allocator.cpp      Thu Dec  7 17:41:45 2006
@@ -14,6 +14,7 @@
 #include "llvm/Support/Allocator.h"
 #include "llvm/Support/DataTypes.h"
 #include "llvm/Support/Streams.h"
+#include <ostream>
 using namespace llvm;
 
 
//===----------------------------------------------------------------------===//


Index: llvm/lib/Support/CommandLine.cpp
diff -u llvm/lib/Support/CommandLine.cpp:1.80 
llvm/lib/Support/CommandLine.cpp:1.81
--- llvm/lib/Support/CommandLine.cpp:1.80       Wed Dec  6 19:30:31 2006
+++ llvm/lib/Support/CommandLine.cpp    Thu Dec  7 17:41:45 2006
@@ -24,6 +24,7 @@
 #include <algorithm>
 #include <functional>
 #include <map>
+#include <ostream>
 #include <set>
 #include <cstdlib>
 #include <cerrno>


Index: llvm/lib/Support/PluginLoader.cpp
diff -u llvm/lib/Support/PluginLoader.cpp:1.20 
llvm/lib/Support/PluginLoader.cpp:1.21
--- llvm/lib/Support/PluginLoader.cpp:1.20      Wed Dec  6 19:30:31 2006
+++ llvm/lib/Support/PluginLoader.cpp   Thu Dec  7 17:41:45 2006
@@ -15,6 +15,7 @@
 #include "llvm/Support/PluginLoader.h"
 #include "llvm/Support/Streams.h"
 #include "llvm/System/DynamicLibrary.h"
+#include <ostream>
 #include <vector>
 using namespace llvm;
 


Index: llvm/lib/Support/Statistic.cpp
diff -u llvm/lib/Support/Statistic.cpp:1.21 llvm/lib/Support/Statistic.cpp:1.22
--- llvm/lib/Support/Statistic.cpp:1.21 Thu Dec  7 14:28:15 2006
+++ llvm/lib/Support/Statistic.cpp      Thu Dec  7 17:41:45 2006
@@ -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...


Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.48 
llvm/lib/Support/SystemUtils.cpp:1.49
--- llvm/lib/Support/SystemUtils.cpp:1.48       Thu Dec  7 14:28:15 2006
+++ llvm/lib/Support/SystemUtils.cpp    Thu Dec  7 17:41:45 2006
@@ -16,6 +16,7 @@
 #include "llvm/Support/SystemUtils.h"
 #include "llvm/System/Process.h"
 #include "llvm/System/Program.h"
+#include <ostream>
 using namespace llvm;
 
 bool llvm::CheckBytecodeOutputToConsole(std::ostream* stream_to_check,



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to