(untested) fix for a gcc warning in some gcc versions

This commit is contained in:
Tomasz Śniatowski 2010-01-07 13:25:49 +01:00
parent b3764df90b
commit 67328165f6

View file

@ -71,7 +71,7 @@ void editor_action_whole_map::perform_without_undo(map_context& mc) const {
}
editor_action_chain::editor_action_chain(const editor::editor_action_chain &other)
: actions_()
: editor_action(), actions_()
{
foreach (editor_action* a, other.actions_) {
actions_.push_back(a->clone());