[Mesa-dev] [PATCH 4/7] mesa: move finite macro to imports.h
Brian Paul
brianp at vmware.com
Fri Feb 27 16:47:52 PST 2015
Move it to the only place it's used.
---
src/mesa/main/compiler.h | 8 --------
src/mesa/main/imports.h | 8 ++++++++
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 9d7df05..796870d 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -64,14 +64,6 @@ extern "C" {
/**
- * finite macro.
- */
-#if defined(_MSC_VER)
-# define finite _finite
-#endif
-
-
-/**
* Disable assorted warnings
*/
#if defined(_WIN32) && !defined(__CYGWIN__)
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 838b985..7921000 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -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
***/
--
1.9.1
More information about the mesa-dev
mailing list