From 7ae2f08fa5c1bd75bceaafc7ad9ca0943b9d3c68 Mon Sep 17 00:00:00 2001 From: Craig Hutchinson Date: Thu, 3 Dec 2015 15:10:34 +0000 Subject: [PATCH] Reverted std::tolower to ::tolower --- include/internal/catch_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_common.hpp b/include/internal/catch_common.hpp index b4dc5d01..2342ae61 100644 --- a/include/internal/catch_common.hpp +++ b/include/internal/catch_common.hpp @@ -22,7 +22,7 @@ namespace Catch { return s.find( infix ) != std::string::npos; } void toLowerInPlace( std::string& s ) { - std::transform( s.begin(), s.end(), s.begin(), std::tolower ); + std::transform( s.begin(), s.end(), s.begin(), ::tolower ); } std::string toLower( std::string const& s ) { std::string lc = s;