From e5df3cc286fa2607897944d478081014929b38ec Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 23 Aug 2010 22:27:49 -0700 Subject: glsl: Silence unused variable warning. The variable is used but only in the body of an assert. --- src/glsl/glsl_types.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/glsl/glsl_types.cpp') diff --git a/src/glsl/glsl_types.cpp b/src/glsl/glsl_types.cpp index 1da2fd76de..2e5c2ecf04 100644 --- a/src/glsl/glsl_types.cpp +++ b/src/glsl/glsl_types.cpp @@ -243,6 +243,7 @@ glsl_type::generate_constructor(glsl_symbol_table *symtab) const bool added = symtab->add_function(name, f); assert(added); + (void) added; ir_function_signature *const sig = new(ctx) ir_function_signature(this); f->add_signature(sig); -- cgit v1.2.3