| 226 | } |
| 227 | |
| 228 | bool string::operator<(const string& other) const FL_NOEXCEPT { |
| 229 | return string_compare(*this, other) < 0; |
| 230 | } |
| 231 | |
| 232 | bool string::operator<=(const string& other) const FL_NOEXCEPT { |
| 233 | return string_compare(*this, other) <= 0; |
nothing calls this directly
no test coverage detected