| 11715 | m_str( adjustString( str ) ) |
| 11716 | {} |
| 11717 | std::string CasedString::adjustString( std::string const& str ) const { |
| 11718 | return m_caseSensitivity == CaseSensitive::No |
| 11719 | ? toLower( str ) |
| 11720 | : str; |
| 11721 | } |
| 11722 | std::string CasedString::caseSensitivitySuffix() const { |
| 11723 | return m_caseSensitivity == CaseSensitive::No |
| 11724 | ? " (case insensitive)" |