Browse Source

minor merge fix

Johannes Ruehle 11 years ago
parent
commit
67352e83d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/basics/numerictools.h

+ 1 - 1
core/basics/numerictools.h

@@ -246,7 +246,7 @@ inline bool isFinite(double x)
 	#else
 	#else
 		NICE_ERROR("isFinite() not defined (and neither is boost found for compensation...)")
 		NICE_ERROR("isFinite() not defined (and neither is boost found for compensation...)")
 	#endif
 	#endif
-#if (__GNUC__ > 3)
+#elif (__GNUC__ > 3)
   return std::isnan(x);
   return std::isnan(x);
 #else
 #else
 	return finite(x);
 	return finite(x);