| 1096 | }; |
| 1097 | |
| 1098 | inline ::flatbuffers::Offset<Int> CreateInt( |
| 1099 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1100 | int32_t bitWidth = 0, |
| 1101 | bool is_signed = false) { |
| 1102 | IntBuilder builder_(_fbb); |
| 1103 | builder_.add_bitWidth(bitWidth); |
| 1104 | builder_.add_is_signed(is_signed); |
| 1105 | return builder_.Finish(); |
| 1106 | } |
| 1107 | |
| 1108 | struct FloatingPoint FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 1109 | typedef FloatingPointBuilder Builder; |
no test coverage detected