glsl: Silence gcc warning "control reaches end of non-void function".
authorJosé Fonseca <jfonseca@vmware.com>
Sat, 14 Aug 2010 13:40:39 +0000 (14:40 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Sat, 14 Aug 2010 13:40:39 +0000 (14:40 +0100)
src/glsl/ir_clone.cpp

index a726096..0a9e25a 100644 (file)
@@ -335,7 +335,7 @@ ir_constant::clone(void *mem_ctx, struct hash_table *ht) const
    }
 
    default:
-      assert(!"Should not get here."); break;
+      assert(!"Should not get here.");
       return NULL;
    }
 }