aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index 2111026..110b1c8 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -6,7 +6,7 @@
class Game : public IGame, public AutoWirable<IGame, Game>
{
public:
- Game() = default;
+ Game() noexcept = default;
- void run() override;
+ void run() noexcept override;
};