| 9225 | m_str( adjustString( str ) ) |
| 9226 | {} |
| 9227 | std::string CasedString::adjustString( std::string const& str ) const { |
| 9228 | return m_caseSensitivity == CaseSensitive::No |
| 9229 | ? toLower( str ) |
| 9230 | : str; |
| 9231 | } |
| 9232 | std::string CasedString::caseSensitivitySuffix() const { |
| 9233 | return m_caseSensitivity == CaseSensitive::No |
| 9234 | ? " (case insensitive)" |