summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-04-05 08:52:33 +1000
committerMaxime Coste <mawww@kakoune.org>2018-04-05 08:52:33 +1000
commit71a1893a5eeae6d230b07b8f9ee47288655be4f9 (patch)
tree413cc40ce918f4de3ec0432159abd2be90e9f1d6 /src/string.hh
parent6ee68b5b0896a3b8d1f1ed6b06a99d2b08686a23 (diff)
Fix some trailing spaces and a tab that sneaked into the code base
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.hh b/src/string.hh
index ddb5be8d..ae41642c 100644
--- a/src/string.hh
+++ b/src/string.hh
@@ -191,7 +191,7 @@ public:
const char* data() const { return is_long() ? l.ptr : s.string; }
char* data() { return is_long() ? l.ptr : s.string; }
- template<bool copy = true>
+ template<bool copy = true>
void reserve(size_t new_capacity);
void set_size(size_t size);
void force_size(size_t new_size);