fix an MSVC warning about unreferenced local variable

This commit is contained in:
Anonymissimus 2012-02-23 21:32:31 +00:00
parent 099156218f
commit fe8ce4d3e2

View file

@ -85,7 +85,7 @@ map_context::map_context(const config& game_config, const std::string& filename)
map_ = editor_map(game_config, file);
return;
} catch (config::error& e) {
} catch (config::error&) {
}
boost::regex re("map_data\\s*=\\s*\"(.+?)\"");