Skip to content

Commit

Permalink
Delete forbidden functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Aug 10, 2019
1 parent b2cd1cf commit ab5c29c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/game.hpp
Expand Up @@ -320,8 +320,8 @@ class game

private:
// forbidden operations
game(const game&);
void operator=(const game&);
game(const game&) = delete;
void operator=(const game&) = delete;

std::size_t current_side() const
{
Expand Down

0 comments on commit ab5c29c

Please sign in to comment.