From 020b14444939409582f51d2cf4a6379e8dc0ada7 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Nov 2018 02:52:53 -0600 Subject: [PATCH] Try to make appveyor happy --- common/string_util.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/string_util.cpp b/common/string_util.cpp index 16123811d..a41f5c184 100644 --- a/common/string_util.cpp +++ b/common/string_util.cpp @@ -88,7 +88,7 @@ const std::string str_toupper(std::string s) { std::transform( s.begin(), s.end(), s.begin(), - [](unsigned char c) { return std::toupper(c); } + [](unsigned char c) { return ::toupper(c); } ); return s; } @@ -97,7 +97,7 @@ const std::string ucfirst(std::string s) { std::string output = s; if (!s.empty()) - output[0] = static_cast(std::toupper(s[0])); + output[0] = static_cast(::toupper(s[0])); return output; }