From a84ca2e2f7427420378a206857e909028070bcdd Mon Sep 17 00:00:00 2001 From: Craig Hutchinson Date: Thu, 3 Dec 2015 14:56:30 +0000 Subject: [PATCH] Reverted std::tolower to ::tolower --- include/external/clara.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/external/clara.h b/include/external/clara.h index 801c5610..2c03f985 100644 --- a/include/external/clara.h +++ b/include/external/clara.h @@ -232,7 +232,7 @@ namespace Clara { } inline void convertInto( std::string const& _source, bool& _dest ) { std::string sourceLC = _source; - std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), std::tolower ); + std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), ::tolower ); if( sourceLC == "y" || sourceLC == "1" || sourceLC == "true" || sourceLC == "yes" || sourceLC == "on" ) _dest = true; else if( sourceLC == "n" || sourceLC == "0" || sourceLC == "false" || sourceLC == "no" || sourceLC == "off" )