summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2010-06-22 14:59:34 -0400
committerNat Goodspeed <nat@lindenlab.com>2010-06-22 14:59:34 -0400
commitdfc20a824944d372c6978ca7b89289ec542554a9 (patch)
treef585519f8078757724e01bd57ff73d620dad3ce4 /indra
parentccad528d5fb5889e9826ca045de5e7315be5942e (diff)
EXT-7926: Remove unreferenced catch-clause variable (MSVC error).
Diffstat (limited to 'indra')
-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 ffdac5d411..1561bda201 100644
--- a/indra/llcommon/llstring.cpp
+++ b/indra/llcommon/llstring.cpp
@@ -998,7 +998,7 @@ void LLStringUtil::formatNumber(std::string& numStr, std::string decimals)
try
{
strStream.imbue(std::locale(sLocale.c_str()));
- } catch (const std::exception &e)
+ } catch (const std::exception &)
{
LL_WARNS_ONCE("Locale") << "Cannot set locale to " << sLocale << LL_ENDL;
}