summaryrefslogtreecommitdiff
path: root/src/glsl/ir_clone.cpp
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-07-18 17:45:16 -0700
committerEric Anholt <eric@anholt.net>2010-07-18 18:13:06 -0700
commit1f47245bdda2c85bf0f0174e6c24a50486b413aa (patch)
treec38a52938e930d6d1e948a12a70bd813ce076da1 /src/glsl/ir_clone.cpp
parent9be7f638130f46a9df2bfbcd4a03b36de9e4f3aa (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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp
index c7b786f0c4..91d6977354 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);