Skip to content

Commit

Permalink
Fix compiler warning about unreferenced variable
Browse files Browse the repository at this point in the history
(cherry-picked from commit c3d7116)
  • Loading branch information
jyrkive committed Oct 7, 2018
1 parent ba9d13f commit f58a7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game_initialization/lobby_data.cpp
Expand Up @@ -314,7 +314,7 @@ game_info::game_info(const config& game, const config& game_config, const std::v
msi << map.w() << font::unicode_multiplication_sign << map.h();
map_size_info = msi.str();
info_stream << spaced_em_dash() << map_size_info;
} catch(incorrect_map_format_error& e) {
} catch(incorrect_map_format_error&) {
verified = false;
} catch(wml_exception& e) {
ERR_CF << "map could not be loaded: " << e.dev_message << '\n';
Expand Down

0 comments on commit f58a7c0

Please sign in to comment.