OSX: add debug mesg to bl_locale_pgettext for later indeep investigation

This commit is contained in:
Jens Verwiebe 2014-02-24 11:18:07 +01:00
parent e72775e34a
commit 04ecf4d0db

@ -113,7 +113,8 @@ const char *bl_locale_pgettext(const char *msgctxt, const char *msgid)
return r;
return msgid;
}
catch(std::bad_cast) { /* std::bad_cast if std::has_facet<Facet>(loc) == false */
catch(std::bad_cast const &e) { /* std::bad_cast if std::has_facet<Facet>(loc) == false */
// std::cout << "bl_locale_pgettext(" << msgid << "): " << e.what() << " \n";
return msgid;
}
catch(std::exception const &) {