diff options
author | Ian Romanick <[email protected]> | 2014-02-18 09:38:04 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-02-19 15:08:50 -0800 |
commit | 7700c73cf4ba780e41c351a86976aa01a995c3ce (patch) | |
tree | 34a29923942638a0503345cf6d856e33dde5f555 /src/glsl | |
parent | 2c85fd5a964a78c9f7a93994fb79f1723c6f45b5 (diff) |
glsl: Silence "type qualifiers ignored on function return type" warning
The const in
const unsigned foo(void);
is meaningless. Removing it silences this warning:
src/glsl/ast_to_hir.cpp:1802:56: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 6549ca7af43..e731d839d2a 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -1797,7 +1797,7 @@ ast_compound_statement::hir(exec_list *instructions, * Evaluate the given exec_node (which should be an ast_node representing * a single array dimension) and return its integer value. */ -static const unsigned +static unsigned process_array_size(exec_node *node, struct _mesa_glsl_parse_state *state) { |