Skip to content

Commit 62e3289

Browse files
committed
fix: fix unnecessary virtual specifiers
1 parent 618e9ca commit 62e3289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/executables/game/application.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ struct Application final : public EventListener, public ServiceProvider {
150150

151151
void handle_event(const SDL_Event& event) override;
152152

153-
virtual void update();
153+
void update();
154154

155-
virtual void render() const;
155+
void render() const;
156156

157157
#if defined(__EMSCRIPTEN__)
158158
void loop_entry_emscripten();

0 commit comments

Comments
 (0)