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
This would avoid having the following code in proofs:
__CPROVER_assume(buf1 != NULL); __CPROVER_assume(aws_byte_buf_is_bounded(buf1, MAX_BUFFER_SIZE)); ensure_byte_buf_has_allocated_buffer_member(buf1); __CPROVER_assume(aws_byte_buf_is_valid(buf1));
by removing the first line (which should be done in aws_byte_buf_is_bounded in any case)
aws_byte_buf_is_bounded
The text was updated successfully, but these errors were encountered:
@adpaco-aws This issue should be moved to AWS C Common. Then we just need to update the version of the submodule here.
Sorry, something went wrong.
No branches or pull requests
This would avoid having the following code in proofs:
by removing the first line (which should be done in
aws_byte_buf_is_bounded
in any case)The text was updated successfully, but these errors were encountered: