diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-09 20:44:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-09 20:44:22 +0000 |
commit | 806cebc562aba0f2e3fef774323e913d451b2b70 (patch) | |
tree | d3c44376528010aa0a51a07ddccd641f75d38864 /include/Support/Timer.h | |
parent | f205fec78ae79707464d568bad297bc69fd1db78 (diff) | |
download | external_llvm-806cebc562aba0f2e3fef774323e913d451b2b70.zip external_llvm-806cebc562aba0f2e3fef774323e913d451b2b70.tar.gz external_llvm-806cebc562aba0f2e3fef774323e913d451b2b70.tar.bz2 |
Updates to match recent timer updates
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/Timer.h')
-rw-r--r-- | include/Support/Timer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Support/Timer.h b/include/Support/Timer.h index 8538bb9..e89f32f 100644 --- a/include/Support/Timer.h +++ b/include/Support/Timer.h @@ -27,6 +27,7 @@ #include <string> #include <vector> +#include <iosfwd> class TimerGroup; @@ -90,7 +91,7 @@ public: /// print - Print the current timer to standard error, and reset the "Started" /// flag. - void print(const Timer &Total); + void print(const Timer &Total, std::ostream &OS); private: friend class TimerGroup; |