summaryrefslogtreecommitdiffstats
path: root/source/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Globals.h')
-rw-r--r--source/Globals.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/Globals.h b/source/Globals.h
index 9b057d262..65db1b436 100644
--- a/source/Globals.h
+++ b/source/Globals.h
@@ -200,15 +200,3 @@ public:
-//Common functions
-//Taken from http://stackoverflow.com/questions/11635/case-insensitive-string-comparison-in-c
-inline bool iequals(const std::string& a, const std::string& b)
-{
- unsigned int sz = a.size();
- if (b.size() != sz)
- return false;
- for (unsigned int i = 0; i < sz; ++i)
- if (tolower(a[i]) != tolower(b[i]))
- return false;
- return true;
-}