summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compiler.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-09-21 22:57:10 -0700
committerMatt Turner <[email protected]>2014-09-24 09:58:43 -0700
commit9499d6e358786f1ed3ed79e16fd301106cd08ddd (patch)
tree390b73586218ec98e4a6ffc6b7cafce6d4cb5a35 /src/mesa/main/compiler.h
parentd20015a576ff1b8c1458264fd896fd2246cd3d1d (diff)
mesa: Unifdef _WIN32_WCE.
Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Jose Fonseca <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r--src/mesa/main/compiler.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 813bf1905f5..185c911ab22 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -214,13 +214,11 @@ static inline GLuint CPU_TO_LE32(GLuint x)
/**
* ASSERT macro
*/
-#if !defined(_WIN32_WCE)
#if defined(DEBUG)
# define ASSERT(X) assert(X)
#else
# define ASSERT(X)
#endif
-#endif
/*