summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-09-02 13:34:18 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-09-02 13:34:18 +0100
commitadcd0a03b135546a8c45fdf67612b7fe234da59d (patch)
tree1554d56219e6d7ba1e66aa6f30d449580af6e259 /src
parentf14f87d2d84d5f6620cdccd2bd02421580f058e1 (diff)
Fix forward declare struct/class mismatch
Diffstat (limited to 'src')
-rw-r--r--src/commands.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.hh b/src/commands.hh
index 8fdc6057..1e70bd1e 100644
--- a/src/commands.hh
+++ b/src/commands.hh
@@ -7,7 +7,7 @@ namespace Kakoune
{
class Context;
-class Key;
+struct Key;
void register_commands();
void exec_keys(ConstArrayView<Key> keys, Context& context);