refactor(clang-tidy): Apply fixes

This commit is contained in:
Michael Carlberg
2016-12-04 04:11:47 +01:00
parent 0cfddf7d72
commit 44da14755d
11 changed files with 25 additions and 19 deletions

View File

@ -16,9 +16,9 @@ namespace string_util {
string upper(const string& s);
string lower(const string& s);
bool compare(const string& s1, const string& s2);
string replace(const string& haystack, const string& needle, const string& replacement, size_t start = 0,
string replace(const string& haystack, const string& needle, const string& reply, size_t start = 0,
size_t end = string::npos);
string replace_all(const string& haystack, const string& needle, const string& replacement, size_t start = 0,
string replace_all(const string& haystack, const string& needle, const string& reply, size_t start = 0,
size_t end = string::npos);
string squeeze(const string& haystack, char needle);
string strip(const string& haystack, char needle);