diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 19:00:30 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-24 19:00:30 +0100 |
commit | 49fef446c31eafce0be7af284f3d4503986110a7 (patch) | |
tree | 7dbe1e3c7de122188fef029f05809b9fa72f0947 /editor/tests | |
parent | a837f206dc4857fe210d19eb6fbf5ad60021b7ac (diff) |
fix warning
Diffstat (limited to 'editor/tests')
-rw-r--r-- | editor/tests/region-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/tests/region-test.cpp b/editor/tests/region-test.cpp index db890560..ab270383 100644 --- a/editor/tests/region-test.cpp +++ b/editor/tests/region-test.cpp @@ -56,7 +56,7 @@ struct region_test : base_test bool handle_key(app&, const key_event&, bool) override { return {}; } bool handle_mouse_click(app& a, const mouse_button_event& e, bool is_down) override; - bool handle_mouse_move(app& a, const mouse_move_event& e) override { return {}; } + bool handle_mouse_move(app&, const mouse_move_event&) override { return {}; } void draw_overlay(app& a) override; void draw_ui(app&, float) override; void update_pre(app&) override {} |