diff options
| -rw-r--r-- | indra/llcommon/llstring.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index f5eb552d99..ffdac5d411 100644 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -994,7 +994,7 @@ void LLStringUtil::formatNumber(std::string& numStr, std::string decimals)  	convertToS32 (decimals, intDecimals);  	if (!sLocale.empty())  	{ -		// imbue() throws if the locale is unknown! (EXT-7926) +		// std::locale() throws if the locale is unknown! (EXT-7926)  		try  		{  			strStream.imbue(std::locale(sLocale.c_str())); | 
