| 477 | struct NullCheckOp { |
| 478 | template <typename T> |
| 479 | bool operator()(const T&) const { |
| 480 | return false; |
| 481 | } |
| 482 | |
| 483 | bool operator()(NullType) const { return true; } |
| 484 | // Note: this is not typically possible, but is supported for allowing |
nothing calls this directly
no test coverage detected