From 67d513aa73cabff710e50680ec8ef25804b9fe09 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Mon, 13 Feb 2017 08:19:34 +0000 Subject: [PATCH] Removed single char contains() - had incorrect prototype anyway --- include/internal/catch_common.h | 1 - include/internal/catch_common.hpp | 3 --- 2 files changed, 4 deletions(-) diff --git a/include/internal/catch_common.h b/include/internal/catch_common.h index 6bdcccb8..32b57ac1 100644 --- a/include/internal/catch_common.h +++ b/include/internal/catch_common.h @@ -82,7 +82,6 @@ namespace Catch { bool endsWith( std::string const& s, std::string const& suffix ); bool endsWith( std::string const& s, char suffix ); bool contains( std::string const& s, std::string const& infix ); - bool contains( std::string const& s, std::string const& infix ); void toLowerInPlace( std::string& s ); std::string toLower( std::string const& s ); std::string trim( std::string const& str ); diff --git a/include/internal/catch_common.hpp b/include/internal/catch_common.hpp index 339f0407..9f943777 100644 --- a/include/internal/catch_common.hpp +++ b/include/internal/catch_common.hpp @@ -30,9 +30,6 @@ namespace Catch { bool contains( std::string const& s, std::string const& infix ) { return s.find( infix ) != std::string::npos; } - bool contains( std::string const& s, char infix ) { - return s.find(infix) != std::string::npos; - } char toLowerCh(char c) { return static_cast( std::tolower( c ) ); }