summaryrefslogtreecommitdiffstats
path: root/src/Common/Util.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-10-21 18:35:42 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-10-21 18:35:42 +0200
commit6bd58c61a1668d336f45443c602e850e965ad368 (patch)
treed48420599501a223eb3018dd998c886b49bbab96 /src/Common/Util.cpp
parente3d0c98e5a867518800bc79c18f7b13755c056e0 (diff)
downloadmad-6bd58c61a1668d336f45443c602e850e965ad368.tar
mad-6bd58c61a1668d336f45443c602e850e965ad368.zip
Interface des ConfigManagers vereinfacht
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;