Misc compiler warning fixes.

This commit is contained in:
WrinklyNinja
2014-05-10 16:41:08 +01:00
parent 0efb46f8df
commit 8580bde131
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ unsigned int c_error(const loot::error& e) {
extMessageStr = new char[strlen(e.what()) + 1];
strcpy(extMessageStr, e.what());
}
catch (std::bad_alloc& e) {
catch (std::bad_alloc& /*e*/) {
extMessageStr = NULL;
}
return e.code();