| 11216 | m_str( adjustString( str ) ) |
| 11217 | {} |
| 11218 | std::string CasedString::adjustString( std::string const& str ) const { |
| 11219 | return m_caseSensitivity == CaseSensitive::No |
| 11220 | ? toLower( str ) |
| 11221 | : str; |
| 11222 | } |
| 11223 | std::string CasedString::caseSensitivitySuffix() const { |
| 11224 | return m_caseSensitivity == CaseSensitive::No |
| 11225 | ? " (case insensitive)" |