summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authordolphin <dolphin@lindenlab.com>2013-02-11 11:57:42 -0800
committerdolphin <dolphin@lindenlab.com>2013-02-11 11:57:42 -0800
commitb03918c73d47290597bdf101d9b013ebfab1f95f (patch)
tree231bc1caa26af6d8f7b57c4d4b750b05d2d2d066 /indra/newview
parentcb672c9ae15aec2ae31fb46a23d7edade45d89d1 (diff)
removed reference to std::string::back for linuxy compilation
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp2
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 += '/';
}