From dfc20a824944d372c6978ca7b89289ec542554a9 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Tue, 22 Jun 2010 14:59:34 -0400
Subject: [PATCH] EXT-7926: Remove unreferenced catch-clause variable (MSVC
 error).

---
 indra/llcommon/llstring.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp
index ffdac5d411d..1561bda2018 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;
 		}
-- 
GitLab