| 11578 | m_str( adjustString( str ) ) |
| 11579 | {} |
| 11580 | std::string CasedString::adjustString( std::string const& str ) const { |
| 11581 | return m_caseSensitivity == CaseSensitive::No |
| 11582 | ? toLower( str ) |
| 11583 | : str; |
| 11584 | } |
| 11585 | std::string CasedString::caseSensitivitySuffix() const { |
| 11586 | return m_caseSensitivity == CaseSensitive::No |
| 11587 | ? " (case insensitive)" |