File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ namespace Catch {
82
82
bool endsWith ( std::string const & s, std::string const & suffix );
83
83
bool endsWith ( std::string const & s, char suffix );
84
84
bool contains ( std::string const & s, std::string const & infix );
85
- bool contains ( std::string const & s, std::string const & infix );
86
85
void toLowerInPlace ( std::string& s );
87
86
std::string toLower ( std::string const & s );
88
87
std::string trim ( std::string const & str );
Original file line number Diff line number Diff line change @@ -30,9 +30,6 @@ namespace Catch {
30
30
bool contains ( std::string const & s, std::string const & infix ) {
31
31
return s.find ( infix ) != std::string::npos;
32
32
}
33
- bool contains ( std::string const & s, char infix ) {
34
- return s.find (infix) != std::string::npos;
35
- }
36
33
char toLowerCh (char c) {
37
34
return static_cast <char >( std::tolower ( c ) );
38
35
}
You can’t perform that action at this time.
0 commit comments