diff options
author | Eric Anholt <[email protected]> | 2010-07-18 17:45:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-18 18:13:06 -0700 |
commit | 1f47245bdda2c85bf0f0174e6c24a50486b413aa (patch) | |
tree | c38a52938e930d6d1e948a12a70bd813ce076da1 /src/glsl/ir_clone.cpp | |
parent | 9be7f638130f46a9df2bfbcd4a03b36de9e4f3aa (diff) |
glsl2: Remove the const disease from function signature's callee.
Diffstat (limited to 'src/glsl/ir_clone.cpp')
-rw-r--r-- | src/glsl/ir_clone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp index c7b786f0c48..91d6977354d 100644 --- a/src/glsl/ir_clone.cpp +++ b/src/glsl/ir_clone.cpp @@ -356,7 +356,7 @@ public: /* Try to find the function signature referenced by the ir_call in the * table. If it is found, replace it with the value from the table. */ - const ir_function_signature *const sig = + ir_function_signature *sig = (ir_function_signature *) hash_table_find(this->ht, ir->get_callee()); if (sig != NULL) ir->set_callee(sig); |