mesa: Convert some asserts into STATIC_ASSERT.
authorMatt Turner <mattst88@gmail.com>
Thu, 25 Jun 2015 23:57:20 +0000 (16:57 -0700)
committerMatt Turner <mattst88@gmail.com>
Mon, 6 Jul 2015 23:04:56 +0000 (16:04 -0700)
Reviewed-by: Chad Versace <chad.versace@intel.com>
src/mesa/main/context.c

index fdef41287f77b6e08eff55772728b62d5562a580..faa1de739d9272b988a3dcf2ed12e4c11b26fb5d 100644 (file)
@@ -377,13 +377,12 @@ one_time_init( struct gl_context *ctx )
    if (!api_init_mask) {
       GLuint i;
 
-      /* do some implementation tests */
-      assert( sizeof(GLbyte) == 1 );
-      assert( sizeof(GLubyte) == 1 );
-      assert( sizeof(GLshort) == 2 );
-      assert( sizeof(GLushort) == 2 );
-      assert( sizeof(GLint) == 4 );
-      assert( sizeof(GLuint) == 4 );
+      STATIC_ASSERT(sizeof(GLbyte) == 1);
+      STATIC_ASSERT(sizeof(GLubyte) == 1);
+      STATIC_ASSERT(sizeof(GLshort) == 2);
+      STATIC_ASSERT(sizeof(GLushort) == 2);
+      STATIC_ASSERT(sizeof(GLint) == 4);
+      STATIC_ASSERT(sizeof(GLuint) == 4);
 
       _mesa_locale_init();