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/completion.hh | |
| parent | 560b4ab0b5551091754bcd331d1ac471c077aaab (diff) | |
Style changes, replace typedefs with usings
Diffstat (limited to 'src/completion.hh')
| -rw-r--r-- | src/completion.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/completion.hh b/src/completion.hh index 84e08dcb..70241f42 100644 --- a/src/completion.hh +++ b/src/completion.hh @@ -1,17 +1,18 @@ #ifndef completion_hh_INCLUDED #define completion_hh_INCLUDED -#include "string.hh" - #include <vector> #include <functional> +#include "units.hh" + namespace Kakoune { class Context; -typedef std::vector<String> CandidateList; +class String; +using CandidateList = std::vector<String>; struct Completions { |
