fix unused variable

This commit is contained in:
gfgtdf 2015-03-22 20:44:23 +01:00
parent 49a6fef4c8
commit 51d3dc1dc6

View file

@ -199,7 +199,7 @@ void mp_game_settings::update_addon_requirements(const config & cfg) {
addon.min_version = *new_data.min_version;
}
}
} catch (version_info::not_sane_exception & e) {
} catch (version_info::not_sane_exception &) {
WRN_NG << "Caught a version_info not_sane_exception when determining a scenario's add-on dependencies. addon_id = " << cfg["id"].str() << "\n";
}
} else {