Don't name the unused variable.

This commit is contained in:
Pentarctagon 2022-02-04 15:42:08 -06:00
parent 65373b85cf
commit 342090a922
No known key found for this signature in database
GPG key ID: 9456BC54A21DBFA0

View file

@ -127,7 +127,7 @@ game::~game()
}
clear_history();
} catch(const boost::coroutines::detail::forced_unwind& e) {
} catch(const boost::coroutines::detail::forced_unwind&) {
ERR_GAME << "Caught forced_unwind in game destructor!\n";
} catch(...) {
}