Skip to content
Snippets Groups Projects
Commit 105ad6d8 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Letting compiler choose implicit LLSD conversions fixes fatal Linux gcc warnings

parent 6128de22
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
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