| 11708 | m_str( adjustString( str ) ) |
| 11709 | {} |
| 11710 | std::string CasedString::adjustString( std::string const& str ) const { |
| 11711 | return m_caseSensitivity == CaseSensitive::No |
| 11712 | ? toLower( str ) |
| 11713 | : str; |
| 11714 | } |
| 11715 | std::string CasedString::caseSensitivitySuffix() const { |
| 11716 | return m_caseSensitivity == CaseSensitive::No |
| 11717 | ? " (case insensitive)" |