| 8037 | m_str( adjustString( str ) ) |
| 8038 | {} |
| 8039 | std::string CasedString::adjustString( std::string const& str ) const { |
| 8040 | return m_caseSensitivity == CaseSensitive::No |
| 8041 | ? toLower( str ) |
| 8042 | : str; |
| 8043 | } |
| 8044 | std::string CasedString::caseSensitivitySuffix() const { |
| 8045 | return m_caseSensitivity == CaseSensitive::No |
| 8046 | ? " (case insensitive)" |