From 41f7fc256c6666b7d5ae20b603680e5f5af73f5a Mon Sep 17 00:00:00 2001 From: fredb Date: Sun, 27 Jul 2008 09:45:33 +0000 Subject: [PATCH] Remove unused variables --- src/Main/fg_init.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index a16407454..9c7eb9d99 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -403,7 +403,7 @@ SGPropertyNode *fgInitLocale(const char *language) { SGPropertyNode *strings = c_node->getNode("strings"); try { readProperties(d_path.str(), strings); - } catch (const sg_exception &e) { + } catch (const sg_exception &) { SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings"); return NULL; } @@ -425,7 +425,7 @@ SGPropertyNode *fgInitLocale(const char *language) { try { readProperties(c_path.str(), strings); - } catch (const sg_exception &e) { + } catch (const sg_exception &) { SG_LOG(SG_GENERAL, SG_ALERT, "Unable to read the localized strings from " << c_path.str()); return NULL;