| 992 | } |
| 993 | |
| 994 | inline uint8_t *make_space(size_t len) { |
| 995 | size_t space = ensure_space(len); |
| 996 | cur_ -= space; |
| 997 | return cur_; |
| 998 | } |
| 999 | |
| 1000 | // Returns nullptr if using the DefaultAllocator. |
| 1001 | Allocator *get_custom_allocator() { return allocator_; } |
no test coverage detected