From adcd0a03b135546a8c45fdf67612b7fe234da59d Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 2 Sep 2015 13:34:18 +0100 Subject: [PATCH] Fix forward declare struct/class mismatch --- src/commands.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 keys, Context& context);