summaryrefslogtreecommitdiffstats
path: root/src/Common/Util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Util.cpp')
-rw-r--r--src/Common/Util.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Common/Util.cpp b/src/Common/Util.cpp
index 2bf4d50..f34aa1e 100644
--- a/src/Common/Util.cpp
+++ b/src/Common/Util.cpp
@@ -22,15 +22,6 @@
namespace Mad {
namespace Common {
-std::string Util::tolower(const std::string &str) {
- std::string ret;
-
- for(std::string::const_iterator c = str.begin(); c != str.end(); ++c)
- ret += std::tolower(*c);
-
- return ret;
-}
-
std::string Util::trim(const std::string &str) {
size_t beg, end;