gallium: Stop warnings
authorJakob Bornecrantz <jakob@tungstengraphics.com>
Mon, 7 Apr 2008 17:39:28 +0000 (19:39 +0200)
committerJakob Bornecrantz <jakob@tungstengraphics.com>
Mon, 7 Apr 2008 17:39:28 +0000 (19:39 +0200)
src/gallium/include/pipe/p_util.h

index 8e3aaee496fb3061e5ab388a66a8f528cc0c0837..1bc00ac7a022410aac0076e111ac9fcc2ec0de69 100644 (file)
@@ -207,7 +207,10 @@ mem_dup(const void *src, uint size)
 #define MIN2( A, B )   ( (A)<(B) ? (A) : (B) )
 #define MAX2( A, B )   ( (A)>(B) ? (A) : (B) )
 
+/* JB stop warnings */
+#ifndef Elements
 #define Elements(x) (sizeof(x)/sizeof((x)[0]))
+#endif
 #define Offset(TYPE, MEMBER) ((unsigned)&(((TYPE *)NULL)->MEMBER))
 
 /**