From 049f848a4026d0d409965b1a4f14a4e33999f6b6 Mon Sep 17 00:00:00 2001 From: Phil Christensen Date: Mon, 28 Nov 2016 23:05:27 -0800 Subject: [PATCH] Fix typeo in previous commit --- include/external/clara.h | 2 +- single_include/catch.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/external/clara.h b/include/external/clara.h index 83f310ae..f627439e 100644 --- a/include/external/clara.h +++ b/include/external/clara.h @@ -401,7 +401,7 @@ namespace Clara { } inline void convertInto( std::string const& _source, bool& _dest ) { std::string sourceLC = _source; - std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), tolowerCh ); + std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), toLowerCh ); 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" ) diff --git a/single_include/catch.hpp b/single_include/catch.hpp index 45334fab..4114c350 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -1,6 +1,6 @@ /* * Catch v1.5.8 - * Generated: 2016-11-28 22:35:10.625000 + * Generated: 2016-11-28 23:04:24.194000 * ---------------------------------------------------------- * This file has been merged from multiple headers. Please don't edit it directly * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. @@ -4000,7 +4000,7 @@ namespace Clara { } inline void convertInto( std::string const& _source, bool& _dest ) { std::string sourceLC = _source; - std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), tolowerCh ); + std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), toLowerCh ); 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" )