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
RUNTIME_ASSERT will fail to compile when taken 0 or 1 format parameters:
RUNTIME_ASSERT
RUNTIME_ASSERT(condition, log); // error! RUNTIME_ASSERT(condition, log, "condition fail"); // error! RUNTIME_ASSERT(condition, log, "condition fail: {}", 5); // pass
The text was updated successfully, but these errors were encountered:
*: refine RUNTIME_ASSERT (#4504)
6a22fd6
close #4503
Successfully merging a pull request may close this issue.
Enhancement
RUNTIME_ASSERT
will fail to compile when taken 0 or 1 format parameters:The text was updated successfully, but these errors were encountered: