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 {