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