summaryrefslogtreecommitdiff
path: root/src/string.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-03-10 19:33:46 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-03-10 19:50:22 +0000
commit3c1a325b6f7c67c530d99aaaedf5f8c96f2b2de6 (patch)
treef6cdaf2eec33dee178e3c888f5120ea43479b157 /src/string.cc
parenta0cf75ec39c679776b28b178a4299cf0ad204a1c (diff)
Refactor String, use a common StringOps interface, hide std::string
Diffstat (limited to 'src/string.cc')
-rw-r--r--src/string.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/string.cc b/src/string.cc
index beeb4a74..5da03901 100644
--- a/src/string.cc
+++ b/src/string.cc
@@ -9,11 +9,6 @@
namespace Kakoune
{
-bool operator<(StringView lhs, StringView rhs)
-{
- return std::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
-}
-
Vector<String> split(StringView str, char separator, char escape)
{
Vector<String> res;