| 417 | enum E {kParameter, kInternalFields}; |
| 418 | E type; |
| 419 | WeakCallbackType(E other) : type(other) {} // NOLINT(runtime/explicit) |
| 420 | inline bool operator==(E other) { return other == this->type; } |
| 421 | inline bool operator!=(E other) { return !operator==(other); } |
| 422 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected