Skip to content
Snippets Groups Projects
Commit ccad528d authored by Lynx Linden's avatar Lynx Linden
Browse files

EXT-7926 FIXED Minor typo correction.

parent 4a3fd568
No related branches found
No related tags found
No related merge requests found
...@@ -994,7 +994,7 @@ void LLStringUtil::formatNumber(std::string& numStr, std::string decimals) ...@@ -994,7 +994,7 @@ void LLStringUtil::formatNumber(std::string& numStr, std::string decimals)
convertToS32 (decimals, intDecimals); convertToS32 (decimals, intDecimals);
if (!sLocale.empty()) if (!sLocale.empty())
{ {
// imbue() throws if the locale is unknown! (EXT-7926) // std::locale() throws if the locale is unknown! (EXT-7926)
try try
{ {
strStream.imbue(std::locale(sLocale.c_str())); strStream.imbue(std::locale(sLocale.c_str()));
......
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