-
Notifications
You must be signed in to change notification settings - Fork 157
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
[mio-circle08] Revise to support ext_offset #13708
[mio-circle08] Revise to support ext_offset #13708
Conversation
This will revise to support ext_offset with - enable mutable methods with generated schema - enable to read Buffer offset/size attributes ONE-DCO-1.0-Signed-off-by: SaeHie Park <[email protected]>
417d443
to
9850566
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
=)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -45,6 +46,28 @@ Reader::Reader(const ::circle::Model *model) | |||
} | |||
} | |||
|
|||
Reader::Reader(const ::circle::Model *model, const std::vector<char> *rawdata) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(optional)
Reader::Reader(const ::circle::Model *model, const std::vector<char> *rawdata) | |
Reader::Reader(const ::circle::Model *model, const std::vector<char> *rawdata): Reader(model) | |
{ | |
_rawdata = rawdata; | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I'm planning to remove old Reader::Reader
This will revise to support ext_offset with