diff options
author | Monty Brandenberg <monty@lindenlab.com> | 2012-06-01 23:06:24 +0000 |
---|---|---|
committer | Monty Brandenberg <monty@lindenlab.com> | 2012-06-01 23:06:24 +0000 |
commit | fb5a29c069d27611b6328fbc313382ef0914ffe9 (patch) | |
tree | c18ee8812598f5929390023ed6bb97f2eea86298 /indra/llcommon/tests/reflection_test.cpp | |
parent | 640798bb9951bc512bcbcffbe136d42372c99322 (diff) |
Platform fixups Linux: unused variables, make error strings constant.
Diffstat (limited to 'indra/llcommon/tests/reflection_test.cpp')
-rw-r--r-- | indra/llcommon/tests/reflection_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/reflection_test.cpp b/indra/llcommon/tests/reflection_test.cpp index 59491cd1fe..8980ebb1f1 100644 --- a/indra/llcommon/tests/reflection_test.cpp +++ b/indra/llcommon/tests/reflection_test.cpp @@ -207,7 +207,7 @@ namespace tut const LLReflective* reflective = property->get(aggregated_data); // Wrong reflective type, should throw exception. // useless op to get rid of compiler warning. - reflective = NULL; + reflective = reflective; } catch(...) { |