From 1bd2260fa5ff6ee3495329abe5ecff6106efcf3d Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 17 Nov 2014 13:51:21 +0000 Subject: Import std::begin/std::end so that container utils work correctly with non std containers --- src/string.hh | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/string.hh') diff --git a/src/string.hh b/src/string.hh index 55276d73..bdb28dd7 100644 --- a/src/string.hh +++ b/src/string.hh @@ -196,16 +196,6 @@ inline StringView String::substr(CharCount pos, CharCount length) const return StringView{*this}.substr(pos, length); } -inline const char* begin(StringView str) -{ - return str.begin(); -} - -inline const char* end(StringView str) -{ - return str.end(); -} - inline String operator+(const char* lhs, const String& rhs) { return String(lhs) + rhs; -- cgit v1.2.3