diff options
author | Ian Romanick <[email protected]> | 2013-03-15 14:33:01 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-04-08 15:17:05 -0700 |
commit | 2c333a878cd4a93ac32e658cc0e30b9bf9589e9d (patch) | |
tree | 49d5629db51c439b9dc7318ed6b30817b42adf8e /src/glsl/ast.h | |
parent | 666fafc144c254705d490915b6e150025780a87a (diff) |
glsl: Don't return a value from check_builtin_array_max_size
That last consumer of the return value was changed to not use it by the
previous commit.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r-- | src/glsl/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast.h b/src/glsl/ast.h index 475fb99d08a..41254cc53bf 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -864,7 +864,7 @@ _mesa_ast_array_index_to_hir(void *mem_ctx, void emit_function(_mesa_glsl_parse_state *state, ir_function *f); -extern bool +extern void check_builtin_array_max_size(const char *name, unsigned size, YYLTYPE loc, struct _mesa_glsl_parse_state *state); |