| 472 | } |
| 473 | |
| 474 | bool SmallStringBase::iequals(const char* otherText) const |
| 475 | { |
| 476 | if (m_length == 0) |
| 477 | return (std::strlen(otherText) == 0); |
| 478 | else |
| 479 | return (CASE_COMPARE(m_buffer, otherText) == 0); |
| 480 | } |
| 481 | |
| 482 | bool SmallStringBase::iequals(const SmallStringBase& str) const |
| 483 | { |