diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2010-06-22 14:59:34 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2010-06-22 14:59:34 -0400 |
commit | dfc20a824944d372c6978ca7b89289ec542554a9 (patch) | |
tree | f585519f8078757724e01bd57ff73d620dad3ce4 /indra | |
parent | ccad528d5fb5889e9826ca045de5e7315be5942e (diff) |
EXT-7926: Remove unreferenced catch-clause variable (MSVC error).
Diffstat (limited to 'indra')
-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 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; } |