From a7e6e5b9362e961cd3c6a3ad29b2bd061a41b0d9 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 18 Apr 2014 13:19:07 +0100 Subject: [PATCH] Remove unimplemented String::replace method --- src/string.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/string.hh b/src/string.hh index c7a7e1c2d..57a2666a0 100644 --- a/src/string.hh +++ b/src/string.hh @@ -59,7 +59,6 @@ public: auto e = utf8::advance(b, end(), (int)length); return String(b,e); } - String replace(const Regex& expression, const String& replacement) const; }; inline String operator+(const char* lhs, const String& rhs)