From: Wolfgang Bangerth Date: Mon, 18 May 1998 16:49:35 +0000 (+0000) Subject: Small change. X-Git-Tag: v8.0.0~22942 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec46b94dbd499b60357ee784655aec294442a509;p=dealii.git Small change. git-svn-id: https://svn.dealii.org/trunk@312 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/timer.cc b/deal.II/base/source/timer.cc index 9f5fb82c4c..0d4b4aa501 100644 --- a/deal.II/base/source/timer.cc +++ b/deal.II/base/source/timer.cc @@ -24,7 +24,7 @@ #endif #ifndef TIMER -#define TIMER clock(); +#define TIMER clock() #endif #ifndef OVER_TIME @@ -47,7 +47,7 @@ Timer::Timer() void Timer::start () { - running = tru; + running = true; overflow = 0; start_time = TIMER / DIVIDE; };