We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In order to be able to pass a const reference of the SBE Message and access the underlying buffer consider adding method:
char const* buffer() const SBE_NOEXCEPT; char const* buffer() const SBE_NOEXCEPT { return m_buffer; }
The generator only generates a non-const version:
char* buffer() SBE_NOEXCEPT { return m_buffer; }
The text was updated successfully, but these errors were encountered:
I got tripped by the styling.
Sorry, something went wrong.
[C++] Add const to buffer accessor within a message or fixed flyweigh…
62de672
…t. Issue #601.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
In order to be able to pass a const reference of the SBE Message and access the underlying buffer
consider adding method:
The generator only generates a non-const version:
The text was updated successfully, but these errors were encountered: