summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/Completer.h')
-rw-r--r--Sluift/Completer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Sluift/Completer.h b/Sluift/Completer.h
index 1e9defb..564c647 100644
--- a/Sluift/Completer.h
+++ b/Sluift/Completer.h
@@ -10,10 +10,10 @@
#include <vector>
namespace Swift {
- class Completer {
- public:
- virtual ~Completer();
+ class Completer {
+ public:
+ virtual ~Completer();
- virtual std::vector<std::string> getCompletions(const std::string& buffer, int start, int end) = 0;
- };
+ virtual std::vector<std::string> getCompletions(const std::string& buffer, int start, int end) = 0;
+ };
}