summaryrefslogtreecommitdiff
path: root/src/completion.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-01-09 19:50:01 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-01-09 19:59:26 +0000
commite6884f989c2d955b8893d9b8eccc80f8cda0c7ca (patch)
treed479e69eb8f3888f6345072aacb71b32a98d4cd6 /src/completion.hh
parent560b4ab0b5551091754bcd331d1ac471c077aaab (diff)
Style changes, replace typedefs with usings
Diffstat (limited to 'src/completion.hh')
-rw-r--r--src/completion.hh7
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
{