* \brief Returns, whether two objects are equal. * * The caller should ensure, that this and the object have the same class; * this makes casting of "other" safe. Typically, an implementation should * check this == other first, the caller can assume a fast implementation. */
| 49 | * check this == other first, the caller can assume a fast implementation. |
| 50 | */ |
| 51 | bool Object::equals(Object *other) |
| 52 | { |
| 53 | misc::assertNotReached (); |
| 54 | return false; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * \brief Return a hash value for the object. |
nothing calls this directly
no test coverage detected