| 100 | { |
| 101 | template <typename T> |
| 102 | static bool Process(void* ptr, bool removed) |
| 103 | { |
| 104 | if constexpr (PointerInvalidationSubscribable<T>) |
| 105 | T::PointerGotInvalid(ptr, removed); |
| 106 | else if constexpr (ExtDataConsiderPointerInvalidation<T>) |
| 107 | T::ExtMap.PointerGotInvalid(ptr, removed); |
| 108 | |
| 109 | return true; |
| 110 | } |
| 111 | }; |
| 112 | |
| 113 | // calls: |
nothing calls this directly
no test coverage detected