Skip to content

Commit

Permalink
remove unnecessary virtual qualifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed May 31, 2014
1 parent 26470b3 commit 0e55026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/play_controller.hpp
Expand Up @@ -110,8 +110,8 @@ class play_controller : public controller_base, public events::observer, public
virtual void search();
virtual void toggle_accelerated_speed();

virtual void maybe_do_init_side(const unsigned int team_index, bool is_replay = false, bool only_visual = false);
virtual void do_init_side(const unsigned int team_index, bool is_replay = false, bool only_visual = false);
void maybe_do_init_side(const unsigned int team_index, bool is_replay = false, bool only_visual = false);
void do_init_side(const unsigned int team_index, bool is_replay = false, bool only_visual = false);
virtual void play_side(const unsigned int side_number, bool save) = 0;

virtual void force_end_turn() = 0;
Expand Down

0 comments on commit 0e55026

Please sign in to comment.