| 190 | } |
| 191 | |
| 192 | static void |
| 193 | delete_frame(Http3Frame *frame) |
| 194 | { |
| 195 | frame->~Http3Frame(); |
| 196 | http3FrameAllocator.free(static_cast<Http3Frame *>(frame)); |
| 197 | } |
| 198 | |
| 199 | static void |
| 200 | delete_data_frame(Http3Frame *frame) |
nothing calls this directly
no test coverage detected