summaryrefslogtreecommitdiff
path: root/src/command_manager.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-01-27 20:28:38 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-01-27 20:28:38 +0000
commite3641371961e7e6fcad9aab51d3d3c2bc928fe76 (patch)
treef24511a6b7c78503862b28f97a461d7a9509752d /src/command_manager.hh
parent2dd4761f89e7d066c46a4b77019cb6d3d4ddef66 (diff)
Fix compilation with clang 3.4
Diffstat (limited to 'src/command_manager.hh')
-rw-r--r--src/command_manager.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_manager.hh b/src/command_manager.hh
index 78c93dd1..83c865cc 100644
--- a/src/command_manager.hh
+++ b/src/command_manager.hh
@@ -14,7 +14,7 @@
namespace Kakoune
{
-struct Context;
+class Context;
using CommandParameters = memoryview<String>;
using Command = std::function<void (CommandParameters, Context& context)>;
using CommandCompleter = std::function<Completions (const Context& context,