Code cleanup: fix some vs2012 compiler warnings

This commit is contained in:
Brecht Van Lommel
2013-06-21 12:33:19 +00:00
parent d6f38e4e01
commit 2df82a2a2b
14 changed files with 53 additions and 45 deletions

View File

@@ -113,8 +113,8 @@ const char *bl_locale_pgettext(const char *msgctxt, const char *msgid)
return r;
return msgid;
}
catch(std::exception const &e) {
catch(std::exception const &) {
// std::cout << "bl_locale_pgettext(" << msgctxt << ", " << msgid << "): " << e.what() << " \n";
return msgid;
}
}
}