Remove unimplemented String::replace method

This commit is contained in:
Maxime Coste 2014-04-18 13:19:07 +01:00
parent 1d7a481e81
commit a7e6e5b936

View File

@ -59,7 +59,6 @@ public:
auto e = utf8::advance(b, end(), (int)length); auto e = utf8::advance(b, end(), (int)length);
return String(b,e); return String(b,e);
} }
String replace(const Regex& expression, const String& replacement) const;
}; };
inline String operator+(const char* lhs, const String& rhs) inline String operator+(const char* lhs, const String& rhs)