aboutsummaryrefslogtreecommitdiff
path: root/include/Support/Timer.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-22 03:08:05 +0000
committerChris Lattner <sabre@nondot.org>2003-06-22 03:08:05 +0000
commit3889a2cb05c36f30050941679d5fd55d45e6a3ed (patch)
treeef8c51f49c7d038915d87d21f9c92954d92a617d /include/Support/Timer.h
parent18345bb93f0c9906dcf1d9ac45b8ee6e693c7bc5 (diff)
Remove a ton of extraneous #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/Timer.h')
-rw-r--r--include/Support/Timer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/Support/Timer.h b/include/Support/Timer.h
index 40ab643928..5cacadaf1c 100644
--- a/include/Support/Timer.h
+++ b/include/Support/Timer.h
@@ -28,7 +28,6 @@
#include <string>
#include <vector>
#include <iosfwd>
-
#include <assert.h>
class TimerGroup;
@@ -64,7 +63,7 @@ public:
PeakMemBase = T.PeakMemBase;
Name = T.Name;
Started = T.Started;
- assert (TG == T.TG && "Can only assign timers in the same TimerGroup!");
+ assert(TG == T.TG && "Can only assign timers in the same TimerGroup!");
return *this;
}