Cleanup: warnings (msvc)

Part of patch D1670 by @LazyDodo
This commit is contained in:
Campbell Barton
2015-12-21 13:00:06 +11:00
parent 6f22494140
commit 32be51dc66
23 changed files with 34 additions and 26 deletions

View File

@@ -114,10 +114,12 @@ const char *bl_locale_pgettext(const char *msgctxt, const char *msgid)
}
catch(std::bad_cast const &e) { /* if std::has_facet<char_message_facet>(l) == false, LC_ALL = "C" case */
// std::cout << "bl_locale_pgettext(" << msgid << "): " << e.what() << " \n";
(void)e;
return msgid;
}
catch(std::exception const &e) {
// std::cout << "bl_locale_pgettext(" << msgctxt << ", " << msgid << "): " << e.what() << " \n";
(void)e;
return msgid;
}
}