From ca97dd1fb80d2edb349df37991a7a96f981c02fb Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 2 Feb 2014 17:04:50 -0600 Subject: [PATCH] Switch to c-based tolower rather than c++ to avoid confusing Visual Studio references #287 --- websocketpp/utilities.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocketpp/utilities.hpp b/websocketpp/utilities.hpp index 07745661a7..8f08efef56 100644 --- a/websocketpp/utilities.hpp +++ b/websocketpp/utilities.hpp @@ -78,7 +78,7 @@ struct ci_less : std::binary_function { : public std::binary_function { bool operator() (unsigned char const & c1, unsigned char const & c2) const { - return std::tolower (c1) < std::tolower (c2); + return tolower (c1) < tolower (c2); } }; bool operator() (std::string const & s1, std::string const & s2) const {