| 8964 | namespace Matchers { |
| 8965 | |
| 8966 | CasedString::CasedString( std::string const& str, CaseSensitive caseSensitivity ) |
| 8967 | : m_caseSensitivity( caseSensitivity ), |
| 8968 | m_str( adjustString( str ) ) |
| 8969 | {} |
| 8970 | std::string CasedString::adjustString( std::string const& str ) const { |
| 8971 | return m_caseSensitivity == CaseSensitive::No |
| 8972 | ? toLower( str ) |
nothing calls this directly
no outgoing calls
no test coverage detected