| 2125 | /// These kinds of buffers are useful for creating a stream of FlatBuffers. |
| 2126 | template<typename T> |
| 2127 | void FinishSizePrefixed(Offset<T> root, |
| 2128 | const char *file_identifier = nullptr) { |
| 2129 | Finish(root.o, file_identifier, true); |
| 2130 | } |
| 2131 | |
| 2132 | void SwapBufAllocator(FlatBufferBuilder &other) { |
| 2133 | buf_.swap_allocator(other.buf_); |