From 11d7493e144de874fa3b338943507db766230681 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 19 May 1998 13:51:56 +0000 Subject: [PATCH] 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 --- deal.II/base/source/timer.cc | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) 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; -- 2.39.5