Add -Wextra

This commit is contained in:
ArthurSonzogni
2019-06-30 23:59:27 +02:00
parent a87e70c96e
commit 32871fcc6b
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ class Container : public Component {
using EventHandler = bool (Container::*)(Event);
bool VerticalEvent(Event event);
bool HorizontalEvent(Event event);
bool TabEvent(Event event) { return false; }
bool TabEvent(Event) { return false; }
EventHandler event_handler_;
using RenderHandler = Element (Container::*)();