mesa: move finite macro to imports.h
authorBrian Paul <brianp@vmware.com>
Thu, 26 Feb 2015 20:22:36 +0000 (13:22 -0700)
committerBrian Paul <brianp@vmware.com>
Sat, 28 Feb 2015 20:39:57 +0000 (13:39 -0700)
Move it to the only place it's used.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/compiler.h
src/mesa/main/imports.h

index a0d2a293d8afd1bbe5fd1481d3a4439e652785b6..a0ef75a24fd2deb1eef4ace104f269a7dd05ca47 100644 (file)
@@ -63,14 +63,6 @@ extern "C" {
 #endif
 
 
-/**
- * finite macro.
- */
-#if defined(_MSC_VER)
-#  define finite _finite
-#endif
-
-
 /**
  * Disable assorted warnings
  */
index 838b985b215902d78de5b6a1b36198364c8bab9e..792100061093dbb2e96ca80937694649c81e3768 100644 (file)
@@ -121,6 +121,14 @@ static inline GLfloat LOG2(GLfloat x)
 
 
 
+/**
+ * finite macro.
+ */
+#if defined(_MSC_VER)
+#  define finite _finite
+#endif
+
+
 /***
  *** IS_INF_OR_NAN: test if float is infinite or NaN
  ***/