mirror of
https://github.com/catchorg/Catch2.git
synced 2025-10-15 08:15:30 +02:00
Fixed errors and warnings on OC project
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Catch {
|
||||
bool contains( std::string const& s, std::string const& infix ) {
|
||||
return s.find( infix ) != std::string::npos;
|
||||
}
|
||||
char toLowerCh(char c) {
|
||||
inline char toLowerCh(char c) {
|
||||
return static_cast<char>( std::tolower( c ) );
|
||||
}
|
||||
void toLowerInPlace( std::string& s ) {
|
||||
|
Reference in New Issue
Block a user