| 166 | } |
| 167 | |
| 168 | inline flatbuffers::Offset<ReuseEntry> CreateReuseEntryDirect( |
| 169 | flatbuffers::FlatBufferBuilder &_fbb, |
| 170 | uint64_t action = 0, |
| 171 | const std::vector<flatbuffers::Offset<fastbotx::ActivityTimes>> *targets = nullptr) { |
| 172 | auto targets__ = targets ? _fbb.CreateVector<flatbuffers::Offset<fastbotx::ActivityTimes>>( |
| 173 | *targets) : 0; |
| 174 | return fastbotx::CreateReuseEntry( |
| 175 | _fbb, |
| 176 | action, |
| 177 | targets__); |
| 178 | } |
| 179 | |
| 180 | struct ReuseModel FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { |
| 181 | typedef ReuseModelBuilder Builder; |
nothing calls this directly
no test coverage detected