| 447 | } |
| 448 | |
| 449 | bool 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 | |
| 457 | bool SmallStringBase::equals(const SmallStringBase& str) const |
| 458 | { |