From 4d5f7a882682975683470b91795fb64e292b93a2 Mon Sep 17 00:00:00 2001 From: Craig Hutchinson Date: Thu, 3 Dec 2015 14:37:14 +0000 Subject: [PATCH] Update catch_common.hpp --- 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 2342ae61..b4dc5d01 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(), ::tolower ); + std::transform( s.begin(), s.end(), s.begin(), std::tolower ); } std::string toLower( std::string const& s ) { std::string lc = s;