-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flex property type #43
base: main
Are you sure you want to change the base?
Conversation
a3fd6eb
to
d63d3ab
Compare
This (vs. all UIDs or none changing) is caused by
Changes are expected then. Edit: also tested generator manually with initial model file and everything works as expected. |
d63d3ab
to
4bbd163
Compare
Edit: Never mind, it's building now. @greenrobot On macOS the Cmake build fails with
Does that ring a bell? The signature of the generated code ( Edit: the generated method has this signature:
|
4bbd163
to
d5f2b15
Compare
Using
flex
annotation (or another name?) on a byte array property (only this FlatBuffers type?) in the FlatBuffers schema:Should generate a model file where the property type is
13
(which isFlex
):Notes
FlexBuffers docs indicateNot relevant, do not add flex properties to generated binding code, only to model JSON.std::vector<uint8_t>
is returned for C++; there does not appear to be an official Go implementation.Tasks
@greenrobot