diff options
author | Chad Versace <[email protected]> | 2011-01-27 01:40:51 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-01-26 16:37:45 -0800 |
commit | cc4a787044ac2b1616a982f6efde4a0cb7542304 (patch) | |
tree | 47e0c836662a4b3a08308cf1498931fa922fdb1b /src/glsl/glsl_lexer.lpp | |
parent | ad3dc370d86e3cfdb5e766bbf6dfbf247807044c (diff) |
glsl: Remove extraneously extraneous parens
I found this parenthetical usage of parentheses to be extraneously
extraneous:
(yyextra->ARB_fragment_coord_conventions_enable)
Diffstat (limited to 'src/glsl/glsl_lexer.lpp')
-rw-r--r-- | src/glsl/glsl_lexer.lpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glsl_lexer.lpp b/src/glsl/glsl_lexer.lpp index 555bc1f8854..4d6866390d6 100644 --- a/src/glsl/glsl_lexer.lpp +++ b/src/glsl/glsl_lexer.lpp @@ -254,7 +254,7 @@ layout { if ((yyextra->language_version >= 140) || yyextra->AMD_conservative_depth_enable || yyextra->ARB_explicit_attrib_location_enable - || (yyextra->ARB_fragment_coord_conventions_enable)){ + || yyextra->ARB_fragment_coord_conventions_enable) { return LAYOUT_TOK; } else { yylval->identifier = strdup(yytext); |