We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SBE Tool v1.7.9
Given the following SBE schema
<sbe:message name="MsgSBESample2" id="1024" semanticType="MsgSBESample2"> <field name="field1" id="1" type="uint16" presence="required" semanticType="int" /> <field name="field2" id="1" type="uint16" presence="required" semanticType="int" /> </sbe:message>
the SBETool generates two fields in two offsets (0,2) with the same field id.
static SBE_CONSTEXPR std::uint16_t field1Id() SBE_NOEXCEPT { return 1; } static SBE_CONSTEXPR std::size_t field1EncodingOffset() SBE_NOEXCEPT { return 0; } static SBE_CONSTEXPR std::uint16_t field2Id() SBE_NOEXCEPT { return 1; } static SBE_CONSTEXPR std::size_t field2EncodingOffset() SBE_NOEXCEPT { return 2; }
The text was updated successfully, but these errors were encountered:
[Java] Detect duplicate ids in message members. Fix for issue #597.
88a7b45
No branches or pull requests
SBE Tool v1.7.9
Given the following SBE schema
the SBETool generates two fields in two offsets (0,2) with the same field id.
The text was updated successfully, but these errors were encountered: