| 7830 | namespace StdString { |
| 7831 | |
| 7832 | CasedString::CasedString(std::string const &str, CaseSensitive::Choice caseSensitivity) |
| 7833 | : m_caseSensitivity(caseSensitivity), m_str(adjustString(str)) { |
| 7834 | } |
| 7835 | std::string CasedString::adjustString(std::string const &str) const { |
| 7836 | return m_caseSensitivity == CaseSensitive::No ? toLower(str) : str; |
| 7837 | } |
nothing calls this directly
no outgoing calls
no test coverage detected