| 83 | } |
| 84 | |
| 85 | sonic_force_inline void TearDown() { |
| 86 | if (st_ == nullptr) return; |
| 87 | for (size_t i = 0; i < np_; i++) { |
| 88 | st_[i].~NodeType(); |
| 89 | } |
| 90 | std::free(st_); |
| 91 | st_ = nullptr; |
| 92 | } |
| 93 | |
| 94 | #define SONIC_ADD_NODE() \ |
| 95 | do { \ |
nothing calls this directly
no outgoing calls
no test coverage detected