diff options
author | Ian Romanick <[email protected]> | 2015-11-17 16:25:06 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2015-11-18 18:35:56 -0800 |
commit | c82498c4daf1cfdee065011a10ee4345ae67ef3b (patch) | |
tree | 93e877410580eb93d971190215b9bc3cd50b14dd /src/glsl/ast.h | |
parent | fc19a0d2e422ea8e45bc5440a91f858f5f345884 (diff) |
glsl: Silence ignored qualifier warning
I think the intention was to mark the "this" parameter as const, but
const goes on the other end to do that.
In file included from glsl_symbol_table.cpp:26:0:
ast.h:339:35: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
const bool is_single_dimension()
^
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Timothy Arceri <[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 1b75234d578..ae763424f71 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -336,7 +336,7 @@ public: array_dimensions.push_tail(&dim->link); } - const bool is_single_dimension() + bool is_single_dimension() const { return this->array_dimensions.tail_pred->prev != NULL && this->array_dimensions.tail_pred->prev->is_head_sentinel(); |