diff options
author | dolphin <dolphin@lindenlab.com> | 2013-02-11 11:57:42 -0800 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-02-11 11:57:42 -0800 |
commit | b03918c73d47290597bdf101d9b013ebfab1f95f (patch) | |
tree | 231bc1caa26af6d8f7b57c4d4b750b05d2d2d066 /indra/newview | |
parent | cb672c9ae15aec2ae31fb46a23d7edade45d89d1 (diff) |
removed reference to std::string::back for linuxy compilation
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 262175e009..3a218b58da 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -4812,7 +4812,7 @@ void LLAppViewer::idleExperienceCache() if (!region) return; std::string lookup_url=region->getCapability("GetExperienceInfo"); - if(!lookup_url.empty() && lookup_url.back() != '/') + if(!lookup_url.empty() && *lookup_url.rbegin() != '/') { lookup_url += '/'; } |