MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / equals

Method equals

common/SmallString.cpp:449–455  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

447}
448
449bool SmallStringBase::equals(const char* str) const
450{
451 if (m_length == 0)
452 return (std::strlen(str) == 0);
453 else
454 return (std::strcmp(m_buffer, str) == 0);
455}
456
457bool SmallStringBase::equals(const SmallStringBase& str) const
458{

Callers

nothing calls this directly

Calls 2

lengthMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected