Removed single char contains()

- had incorrect prototype anyway
This commit is contained in:
Phil Nash 2017-02-13 08:19:34 +00:00
parent 9a3486a705
commit 67d513aa73
2 changed files with 0 additions and 4 deletions

View File

@ -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 );

View File

@ -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<char>( std::tolower( c ) );
}