calls: T::Clear() T::ExtMap.Clear()
| 80 | // T::Clear() |
| 81 | // T::ExtMap.Clear() |
| 82 | struct ClearAction |
| 83 | { |
| 84 | template <typename T> |
| 85 | static bool Process() |
| 86 | { |
| 87 | if constexpr (Clearable<T>) |
| 88 | T::Clear(); |
| 89 | else if constexpr (HasExtMap<T>) |
| 90 | T::ExtMap.Clear(); |
| 91 | |
| 92 | return true; |
| 93 | } |
| 94 | }; |
| 95 | |
| 96 | // calls: |
| 97 | // T::PointerGotInvalid(void*, bool) |
nothing calls this directly
no outgoing calls
no test coverage detected