Fix -Wreorder warning

This commit is contained in:
Celtic Minstrel 2017-03-16 17:40:00 -04:00
parent 6bf76d940b
commit 2454059f76

View file

@ -43,8 +43,8 @@ game_board::game_board(const ter_data_cache & tdata, const config & level)
game_board::game_board(const game_board & other)
: teams_(other.teams_)
, map_(new gamemap(*(other.map_)))
, labels_(other.labels_)
, map_(new gamemap(*(other.map_)))
, unit_id_manager_(other.unit_id_manager_)
, units_(other.units_) {}