MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / operator<

Method operator<

tests/framework/src/doctest.cpp:817–823  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

815}
816
817bool SubcaseSignature::operator<(const SubcaseSignature& other) const {
818 if(m_line != other.m_line)
819 return m_line < other.m_line;
820 if(std::strcmp(m_file, other.m_file) != 0)
821 return std::strcmp(m_file, other.m_file) < 0;
822 return m_name.compare(other.m_name) < 0;
823}
824
825DOCTEST_DEFINE_INTERFACE(IContextScope)
826

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected