diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-04-01 09:14:52 -0400 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-04-01 09:14:52 -0400 |
commit | 2c584790d0505ebff13d29e9f068aefcffe54f01 (patch) | |
tree | d0633d670e49839da8c45b021553884804d428e8 /indra/llui/tests/llurlentry_stub.cpp | |
parent | cf4d929888025552050e66f3b359e49ed131af8d (diff) |
VWR-24487 make PREHASH variables char const* const
Diffstat (limited to 'indra/llui/tests/llurlentry_stub.cpp')
-rw-r--r-- | indra/llui/tests/llurlentry_stub.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/tests/llurlentry_stub.cpp b/indra/llui/tests/llurlentry_stub.cpp index 96ebe83826..095447ec66 100644 --- a/indra/llui/tests/llurlentry_stub.cpp +++ b/indra/llui/tests/llurlentry_stub.cpp @@ -193,8 +193,8 @@ LLFontGL* LLFontGL::getFontDefault() return NULL; } -char* _PREHASH_AgentData = "AgentData"; -char* _PREHASH_AgentID = "AgentID"; +char const* const _PREHASH_AgentData = 0; // never dereferenced during this test +char const* const _PREHASH_AgentID = 0; // never dereferenced during this test LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS); |