diff options
author | José Fonseca <[email protected]> | 2010-08-14 15:35:57 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-08-14 15:35:57 +0100 |
commit | 1cbcf6693aa490c4dcb56712bfb9998deb270f08 (patch) | |
tree | 6d8257d3510737c099db74978102456f90201a59 /src/glsl/ir.h | |
parent | 1d22923fae7f4c749b3820844110e3d8ee4d26c0 (diff) |
glsl: Standardize a few more uses of struct vs class keyword.
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index eb9e6cdf0e2..b04222893cf 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -1383,11 +1383,11 @@ _mesa_glsl_release_functions(void); extern void reparent_ir(exec_list *list, void *mem_ctx); -class glsl_symbol_table; +struct glsl_symbol_table; extern void import_prototypes(const exec_list *source, exec_list *dest, - class glsl_symbol_table *symbols, void *mem_ctx); + struct glsl_symbol_table *symbols, void *mem_ctx); extern bool ir_has_call(ir_instruction *ir); |