From 1d9f369824a3176e3ba74042787ee16a4daf1957 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 7 Apr 2017 12:55:04 +0200 Subject: Cleanup: Unused function --- intern/locale/msgfmt.cc | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'intern/locale') diff --git a/intern/locale/msgfmt.cc b/intern/locale/msgfmt.cc index 6ee1ee14781..02c58ebc5bc 100644 --- a/intern/locale/msgfmt.cc +++ b/intern/locale/msgfmt.cc @@ -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")); -- cgit v1.2.3