summaryrefslogtreecommitdiff
path: root/src/user_interface.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-01-08 22:30:15 +0000
committerMaxime Coste <mawww@kakoune.org>2017-01-08 22:39:01 +0000
commitdcd8f6ef0105578e10dc18975871bc59154e008c (patch)
tree2e0e2e11d4afcf9c351c3a7dd8c9847b253d3017 /src/user_interface.hh
parent9dfd17a5bc584a66711707044bdf27ff57e7aebb (diff)
Apply clang-tidy modernize to the codebase
Diffstat (limited to 'src/user_interface.hh')
-rw-r--r--src/user_interface.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user_interface.hh b/src/user_interface.hh
index 95dc9650..a6a65885 100644
--- a/src/user_interface.hh
+++ b/src/user_interface.hh
@@ -39,7 +39,7 @@ using OnKeyCallback = std::function<void(Key key)>;
class UserInterface
{
public:
- virtual ~UserInterface() {}
+ virtual ~UserInterface() = default;
virtual void menu_show(ConstArrayView<DisplayLine> choices,
DisplayCoord anchor, Face fg, Face bg,