summaryrefslogtreecommitdiff
path: root/src/utils/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/string.cpp')
-rw-r--r--src/utils/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/string.cpp b/src/utils/string.cpp
index 0785429d..059903c7 100644
--- a/src/utils/string.cpp
+++ b/src/utils/string.cpp
@@ -26,6 +26,6 @@
std::string utils::toupper(std::string s)
{
- std::transform(s.begin(), s.end(), s.begin(), (int(*)(int)) toupper);
+ std::transform(s.begin(), s.end(), s.begin(), (int(*)(int)) std::toupper);
return s;
}