From f3067872c421a0c9c6682f65eea55cbb8727e4ba Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Nov 2018 02:57:38 -0600 Subject: [PATCH] Appveyor take 2 --- common/string_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/string_util.cpp b/common/string_util.cpp index a41f5c184..508304ce1 100644 --- a/common/string_util.cpp +++ b/common/string_util.cpp @@ -67,7 +67,7 @@ const std::string str_tolower(std::string s) { std::transform( s.begin(), s.end(), s.begin(), - [](unsigned char c) { return std::tolower(c); } + [](unsigned char c) { return ::tolower(c); } ); return s; }