MCPcopy Create free account
hub / github.com/RenderKit/oidn / CasedString

Method CasedString

external/catch.hpp:11702–11705  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11700 namespace StdString {
11701
11702 CasedString::CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity )
11703 : m_caseSensitivity( caseSensitivity ),
11704 m_str( adjustString( str ) )
11705 {}
11706 std::string CasedString::adjustString( std::string const& str ) const {
11707 return m_caseSensitivity == CaseSensitive::No
11708 ? toLower( str )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected