| 270 | start_ = fbb_.StartTable(); |
| 271 | } |
| 272 | flatbuffers::Offset<KeyValue> Finish() { |
| 273 | const auto end = fbb_.EndTable(start_); |
| 274 | auto o = flatbuffers::Offset<KeyValue>(end); |
| 275 | fbb_.Required(o, KeyValue::VT_KEY); |
| 276 | return o; |
| 277 | } |
| 278 | }; |
| 279 | |
| 280 | inline flatbuffers::Offset<KeyValue> CreateKeyValue( |