From: Wolfgang Bangerth Date: Tue, 19 May 1998 13:51:56 +0000 (+0000) Subject: Remove some things that we probably don't need in the near future but which make... X-Git-Tag: v8.0.0~22938 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11d7493e144de874fa3b338943507db766230681;p=dealii.git Remove some things that we probably don't need in the near future but which make gcc choke when compiling. git-svn-id: https://svn.dealii.org/trunk@316 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/timer.cc b/deal.II/base/source/timer.cc index 0d4b4aa501..39b2f2af6a 100644 --- a/deal.II/base/source/timer.cc +++ b/deal.II/base/source/timer.cc @@ -5,35 +5,17 @@ #include - -#if #cpu(transputer) -# define TIMER TimeNowLow() -# define DIVIDE CLK_TCK_LOW -#endif -#ifdef _ARCH_PPC -# if #system(parix) -# define TIMER TimeNow() -# define DIVIDE CLOCK_TICK -# endif -# if #system(aix) -# define DIVIDE CLOCKS_PER_SEC -# endif -#endif -#if #cpu(sparc) -# define DIVIDE 1.e6 -#endif - #ifndef TIMER #define TIMER clock() #endif +#ifndef DIVIDE +#define DIVIDE 1.e6 +#endif #ifndef OVER_TIME #define OVER_TIME 4294967296./DIVIDE #endif -#ifndef DIVIDE -#define DIVIDE 1.e6 -#endif const double Timer::overtime = OVER_TIME;