Cleanup: Unused function

This commit is contained in:
Sergey Sharybin
2017-04-07 12:55:04 +02:00
parent 9706bfd25d
commit 1d9f369824

View File

@@ -42,18 +42,6 @@ bool starts_with(const std::string &str,
}
}
std::string ltrim(const std::string &str) {
std::string result = str;
result.erase(0, result.find_first_not_of(" \t\r\n"));
return result;
}
std::string rtrim(const std::string &str) {
std::string result = str;
result.erase(result.find_last_not_of(" \t\r\n") + 1);
return result;
}
std::string trim(const std::string &str) {
std::string result = str;
result.erase(0, result.find_first_not_of(" \t\r\n"));