From 12e0f46e256866b6771c388ff9aa0b097c86efd5 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 28 Jul 2015 20:18:18 +0100 Subject: [PATCH] Use forward declaration instead of include in commands.hh --- src/commands.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.hh b/src/commands.hh index 9e7479d7..9183f85f 100644 --- a/src/commands.hh +++ b/src/commands.hh @@ -1,13 +1,13 @@ #ifndef commands_hh_INCLUDED #define commands_hh_INCLUDED -#include "keys.hh" #include "array_view.hh" namespace Kakoune { class Context; +class Key; void register_commands(); void exec_keys(ConstArrayView keys, Context& context);