diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-22 10:45:24 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-22 10:45:24 +0100 |
commit | 41282923d0dad390cd9bc1d1025f7dde801899d5 (patch) | |
tree | ca0602254a9008a781b0bb7a2ac7081b5a5b1a7c /editor/tests | |
parent | 8fca947f5e163f48600c7c922d1f8f856f30248c (diff) |
d
Diffstat (limited to 'editor/tests')
-rw-r--r-- | editor/tests/pathfinding.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/editor/tests/pathfinding.cpp b/editor/tests/pathfinding.cpp index b506458a..8fba119b 100644 --- a/editor/tests/pathfinding.cpp +++ b/editor/tests/pathfinding.cpp @@ -73,7 +73,7 @@ struct pf_test final : base_test void draw_overlay(app& a) override; void draw_ui(app& a, float menu_bar_height) override; void update_pre(app& a, const Ns& dt) override; - void update_post(app& a, const Ns& dt) override; + void update_post(app&, const Ns&) override {} }; constexpr step_s next_step(point from, point to) @@ -208,10 +208,6 @@ void pf_test::update_pre(app& a, const Ns& dt) } } -void pf_test::update_post(app&, const Ns&) -{ -} - } // namespace Pointer<base_test> tests_data::make_test_pathfinding() { return Pointer<pf_test>{InPlaceInit}; } |