]> Creatis software - clitk.git/commitdiff
Correct else position
authorDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 4 Nov 2014 09:13:25 +0000 (10:13 +0100)
committerDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 4 Nov 2014 09:13:25 +0000 (10:13 +0100)
common/clitkTimer.cxx

index cd74428832f4505df7edd11028b359030ab064c5..329ca13f04272d44104a3f0926e54e3b0e5b0aa8 100644 (file)
@@ -64,13 +64,15 @@ void clitk::Timer::Stop(bool accumulate)
     mElapsed += (mEnd.ru_utime.tv_usec - mBegin.ru_utime.tv_usec)+
                 (mEnd.ru_utime.tv_sec - mBegin.ru_utime.tv_sec)*1000000;
   }
+  else
 #elif defined(_WIN32)
   QueryPerformanceCounter((LARGE_INTEGER*)&mEnd);
   if (accumulate) {
     mElapsed += ((mEnd-mBegin)*1000000)/(long double)mFrequency;
   }
+  else
 #endif
-  else {
+  {
     mNumberOfCall--;
   }
 }
@@ -114,4 +116,3 @@ void clitk::Timer::Reset()
 
 // #endif // If UNIX
 #endif /* end #define CLITKTIMER_CXX */
-