| 47 | FlatBuffersAllocator SerializedObject::sAllocator; |
| 48 | |
| 49 | SerializedObject::SerializedObject() |
| 50 | : mFBB(ipl::make_unique<flatbuffers::FlatBufferBuilder>(kInitialSize, &sAllocator)) |
| 51 | , mSize(0) |
| 52 | , mData(nullptr) |
| 53 | {} |
| 54 | |
| 55 | SerializedObject::SerializedObject(size_t size, const byte_t* data) |
| 56 | : mSize(size) |
nothing calls this directly
no outgoing calls
no test coverage detected