diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-01-09 19:50:01 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-01-09 19:59:26 +0000 |
| commit | e6884f989c2d955b8893d9b8eccc80f8cda0c7ca (patch) | |
| tree | d479e69eb8f3888f6345072aacb71b32a98d4cd6 /src/hook_manager.hh | |
| parent | 560b4ab0b5551091754bcd331d1ac471c077aaab (diff) | |
Style changes, replace typedefs with usings
Diffstat (limited to 'src/hook_manager.hh')
| -rw-r--r-- | src/hook_manager.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hook_manager.hh b/src/hook_manager.hh index 8b0d7e2d..1c86bfb1 100644 --- a/src/hook_manager.hh +++ b/src/hook_manager.hh @@ -10,7 +10,7 @@ namespace Kakoune { class Context; -typedef std::function<void (const String&, Context&)> HookFunc; +using HookFunc = std::function<void (const String&, Context&)>; class HookManager { |
