@cond FLATBUFFERS_INTERNAL
| 1382 | |
| 1383 | /// @cond FLATBUFFERS_INTERNAL |
| 1384 | void Finished() const { |
| 1385 | // If you get this assert, you're attempting to get access a buffer |
| 1386 | // which hasn't been finished yet. Be sure to call |
| 1387 | // FlatBufferBuilder::Finish with your root table. |
| 1388 | // If you really need to access an unfinished buffer, call |
| 1389 | // GetCurrentBufferPointer instead. |
| 1390 | FLATBUFFERS_ASSERT(finished); |
| 1391 | } |
| 1392 | /// @endcond |
| 1393 | |
| 1394 | /// @brief In order to save space, fields that are set to their default value |
no outgoing calls
no test coverage detected