| 11560 | m_str( adjustString( str ) ) |
| 11561 | {} |
| 11562 | std::string CasedString::adjustString( std::string const& str ) const { |
| 11563 | return m_caseSensitivity == CaseSensitive::No |
| 11564 | ? toLower( str ) |
| 11565 | : str; |
| 11566 | } |
| 11567 | std::string CasedString::caseSensitivitySuffix() const { |
| 11568 | return m_caseSensitivity == CaseSensitive::No |
| 11569 | ? " (case insensitive)" |