| 218 | } |
| 219 | |
| 220 | bool string::operator>(const string& other) const FL_NOEXCEPT { |
| 221 | return string_compare(*this, other) > 0; |
| 222 | } |
| 223 | |
| 224 | bool string::operator>=(const string& other) const FL_NOEXCEPT { |
| 225 | return string_compare(*this, other) >= 0; |
nothing calls this directly
no test coverage detected