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
It looks like FLATBUFFERS_TRACK_VERIFIER_BUFFER_SIZE was deprecated, the ability to call either of the following was broken:
FLATBUFFERS_TRACK_VERIFIER_BUFFER_SIZE
flatbuffers::SizeVerifier verifier{ data, len }; verifier.VerifyBuffer<my_root_type>(); // compiler error auto my_buffer = Getmy_root_type(data); my_buffer->Verify(verifier); // compiler error
The text was updated successfully, but these errors were encountered:
these both fail with some flavor of
verifier.h:216:64: error: cannot convert 'flatbuffers::VerifierTemplate<true>' to 'flatbuffers::Verifier&' {aka 'flatbuffers::VerifierTemplate<false>&'}
Sorry, something went wrong.
No branches or pull requests
It looks like
FLATBUFFERS_TRACK_VERIFIER_BUFFER_SIZE
was deprecated, the ability to call either of the following was broken:The text was updated successfully, but these errors were encountered: