Skip to content
Snippets Groups Projects
Commit 93138ec2 authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

hack to work around gcc 4.2 compiler warning; really we should not store...

hack to work around gcc 4.2 compiler warning; really we should not store static strings in char * pointers (they should all be changed to const char *).
parent 1ba64d9b
No related branches found
No related tags found
No related merge requests found
...@@ -193,8 +193,8 @@ LLFontGL* LLFontGL::getFontDefault() ...@@ -193,8 +193,8 @@ LLFontGL* LLFontGL::getFontDefault()
return NULL; return NULL;
} }
char* _PREHASH_AgentData = "AgentData"; char* _PREHASH_AgentData = (char *)"AgentData";
char* _PREHASH_AgentID = "AgentID"; char* _PREHASH_AgentID = (char *)"AgentID";
LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS); LLHost LLHost::invalid(INVALID_PORT,INVALID_HOST_IP_ADDRESS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment