diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 08:43:55 +0000 |
commit | d9ea85ab01fb0f2929ed50223d3758dceea8bcbd (patch) | |
tree | bd195c4fd5fbdee13ee748e36b288deaa8c06d15 /include | |
parent | b515d75856f58a8b3b71d782eb00916d686329ad (diff) | |
download | external_llvm-d9ea85ab01fb0f2929ed50223d3758dceea8bcbd.zip external_llvm-d9ea85ab01fb0f2929ed50223d3758dceea8bcbd.tar.gz external_llvm-d9ea85ab01fb0f2929ed50223d3758dceea8bcbd.tar.bz2 |
remove some uses of llvm/Support/Streams.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Timer.h b/include/llvm/Support/Timer.h index 71b7ee5..7240cb9 100644 --- a/include/llvm/Support/Timer.h +++ b/include/llvm/Support/Timer.h @@ -19,12 +19,12 @@ #include "llvm/System/Mutex.h" #include <string> #include <vector> -#include <iosfwd> #include <cassert> namespace llvm { class TimerGroup; +class raw_ostream; /// Timer - This class is used to track the amount of time spent between /// invocations of it's startTimer()/stopTimer() methods. Given appropriate OS @@ -112,7 +112,7 @@ public: /// print - Print the current timer to standard error, and reset the "Started" /// flag. - void print(const Timer &Total, std::ostream &OS); + void print(const Timer &Total, raw_ostream &OS); private: friend class TimerGroup; |