summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorLynx Linden <lynx@lindenlab.com>2010-06-22 18:55:04 +0100
committerLynx Linden <lynx@lindenlab.com>2010-06-22 18:55:04 +0100
commitccad528d5fb5889e9826ca045de5e7315be5942e (patch)
tree884b4771eb4bcde6cf725f7a4c8e65507cda2634 /indra/llcommon
parent4a3fd5686768ab35b6b22c15d6ce7b6550212fad (diff)
EXT-7926 FIXED Minor typo correction.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llstring.cpp2
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()));