summaryrefslogtreecommitdiff
path: root/indra/newview/tests/llremoteparcelrequest_test.cpp
diff options
context:
space:
mode:
authorBoroondas Gupte <hg@boroon.dasgupta.ch>2011-04-01 09:14:52 -0400
committerBoroondas Gupte <hg@boroon.dasgupta.ch>2011-04-01 09:14:52 -0400
commit2c584790d0505ebff13d29e9f068aefcffe54f01 (patch)
treed0633d670e49839da8c45b021553884804d428e8 /indra/newview/tests/llremoteparcelrequest_test.cpp
parentcf4d929888025552050e66f3b359e49ed131af8d (diff)
VWR-24487 make PREHASH variables char const* const
Diffstat (limited to 'indra/newview/tests/llremoteparcelrequest_test.cpp')
-rw-r--r--indra/newview/tests/llremoteparcelrequest_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/tests/llremoteparcelrequest_test.cpp b/indra/newview/tests/llremoteparcelrequest_test.cpp
index 7862cce3a1..9a6e08ee84 100644
--- a/indra/newview/tests/llremoteparcelrequest_test.cpp
+++ b/indra/newview/tests/llremoteparcelrequest_test.cpp
@@ -61,8 +61,8 @@ void LLMessageSystem::addUUIDFast(char const *,LLUUID const &) { }
void LLMessageSystem::nextBlockFast(char const *) { }
void LLMessageSystem::newMessage(char const *) { }
LLMessageSystem * gMessageSystem;
-char * _PREHASH_AgentID;
-char * _PREHASH_AgentData;
+char const* const _PREHASH_AgentID = 0; // never dereferenced during this test
+char const* const _PREHASH_AgentData = 0; // never dereferenced during this test
LLAgent gAgent;
LLAgent::LLAgent() : mAgentAccess(s_saved_settings) { }
LLAgent::~LLAgent() { }