diff options
author | Rider Linden <rider@lindenlab.com> | 2015-11-02 13:41:22 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-11-02 13:41:22 -0800 |
commit | ac0eee2b51f35f4615bc0948ae0eba0679938ac5 (patch) | |
tree | ca8551a70fb1be1004eb99c2e4b3aae583d43380 /indra/newview | |
parent | 8866ba3a7f6c463fe9bf56630a6677206824e603 (diff) |
MAINT-5812: cbegin & cend are not available on all platforms.
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/lltranslate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltranslate.cpp b/indra/newview/lltranslate.cpp index e2108d67a8..1936e24761 100755 --- a/indra/newview/lltranslate.cpp +++ b/indra/newview/lltranslate.cpp @@ -197,7 +197,7 @@ void LLTranslationAPIHandler::translateMessageCoro(LanguagePair_t fromTo, std::s int parseResult = status.getType(); const LLSD::Binary &rawBody = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS_RAW].asBinary(); - std::string body(rawBody.cbegin(), rawBody.cend()); + std::string body(rawBody.begin(), rawBody.end()); if (this->parseResponse(parseResult, body, translation, detected_lang, err_msg)) { |