| 691 | } |
| 692 | |
| 693 | int String::compare(const char* other, bool no_case) const { |
| 694 | if(no_case) |
| 695 | return doctest::stricmp(c_str(), other); |
| 696 | return std::strcmp(c_str(), other); |
| 697 | } |
| 698 | |
| 699 | int String::compare(const String& other, bool no_case) const { |
| 700 | return compare(other.c_str(), no_case); |
no test coverage detected