| 222 | } |
| 223 | |
| 224 | bool string::operator>=(const string& other) const FL_NOEXCEPT { |
| 225 | return string_compare(*this, other) >= 0; |
| 226 | } |
| 227 | |
| 228 | bool string::operator<(const string& other) const FL_NOEXCEPT { |
| 229 | return string_compare(*this, other) < 0; |
nothing calls this directly
no test coverage detected