| 197 | } |
| 198 | |
| 199 | static void |
| 200 | delete_data_frame(Http3Frame *frame) |
| 201 | { |
| 202 | frame->~Http3Frame(); |
| 203 | http3DataFrameAllocator.free(static_cast<Http3DataFrame *>(frame)); |
| 204 | } |
| 205 | |
| 206 | static void |
| 207 | delete_headers_frame(Http3Frame *frame) |
nothing calls this directly
no test coverage detected