Disable some timing code

llvm-svn: 117910
This commit is contained in:
Douglas Gregor 2010-11-01 13:48:43 +00:00
parent e1dbeb28da
commit 1cbdd951e8
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace {
std::string Output;
public:
explicit SimpleTimer(bool WantTiming) : WantTiming(true) {
explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
Start = TimeRecord::getCurrentTime();
}