diff options
author | Jakob Sinclair <[email protected]> | 2016-04-13 18:43:09 +0200 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-04-26 14:36:29 -0700 |
commit | 09e4ac00ac90dd6d1f6bcb4c4e2875bb8a0ce1c6 (patch) | |
tree | 6aa95a9b231e17b1f2a138623130ac2d667a3254 /src/compiler/glsl/ast_function.cpp | |
parent | 52c7443932bd38d6708fcab2a8dfcc7ed3d678f2 (diff) |
glsl: removing double semi-colons
Trivial change. Removing unnecessary semi-colons from the code.
I don't have push access so someone reviewing this can push it.
Signed-off-by: Jakob Sinclair <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast_function.cpp')
-rw-r--r-- | src/compiler/glsl/ast_function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ast_function.cpp b/src/compiler/glsl/ast_function.cpp index db68d5dfa48..f50c7bf7b71 100644 --- a/src/compiler/glsl/ast_function.cpp +++ b/src/compiler/glsl/ast_function.cpp @@ -1690,7 +1690,7 @@ process_record_constructor(exec_list *instructions, constructor_type->fields.structure[i].name, ir->type->name, constructor_type->fields.structure[i].type->name); - return ir_rvalue::error_value(ctx);; + return ir_rvalue::error_value(ctx); } node = node->next; |