summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2009-07-20 17:13:05 -0700
committerNat Goodspeed <nat@lindenlab.com>2009-07-20 17:13:05 -0700
commit105ad6d81522f17cf0e2deaf9c71e2a9b234b33d (patch)
tree6e135d560b08847e8ae4d3f82621a0f6d9ccda09 /indra
parent6128de22f48fca9331ad67bb6b0914a60cb0d843 (diff)
Letting compiler choose implicit LLSD conversions fixes fatal Linux gcc warnings
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llagentlistener.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llagentlistener.cpp b/indra/newview/llagentlistener.cpp
index 90070b2143..0f00078b33 100644
--- a/indra/newview/llagentlistener.cpp
+++ b/indra/newview/llagentlistener.cpp
@@ -45,7 +45,7 @@ void LLAgentListener::requestTeleport(LLSD const & event_data) const
}
else
{
- std::string url = LLSLURL::buildSLURL(event_data["regionname"].asString(), event_data["x"].asReal(), event_data["y"].asReal(), event_data["z"].asReal());
+ std::string url = LLSLURL::buildSLURL(event_data["regionname"], event_data["x"], event_data["y"], event_data["z"]);
LLURLDispatcher::dispatch(url, NULL, false);
}
}