| 100 | } |
| 101 | |
| 102 | sonic_force_inline void TearDown() { |
| 103 | if (st_ == nullptr) return; |
| 104 | for (size_t i = 0; i < np_; i++) { |
| 105 | st_[i].~NodeType(); |
| 106 | } |
| 107 | std::free(st_); |
| 108 | st_ = nullptr; |
| 109 | } |
| 110 | |
| 111 | #define SONIC_ADD_NODE() \ |
| 112 | do { \ |
nothing calls this directly
no outgoing calls
no test coverage detected