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
add an optional (for performance reasons) libassert-like output:
values involved in assert expressions are displayed. Redundant diagnostics like 7 => 7 are avoided.
assert(vec.size() > 7);
Running "sum"... sum.cpp:11:FAILED [(3 > 0 and 41 == 42)] FAILED
here "false" gives no hint:
main.cpp:4:FAILED [false]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
add an optional (for performance reasons) libassert-like output:
colors (syntax highlighting)
expression diagnostics:
values involved in assert expressions are displayed. Redundant diagnostics like 7 => 7 are avoided.
assert(vec.size() > 7);
custom messages should be displayed like extra diagnostics
stack trace can be ignored.
Actual Behavior
here "false" gives no hint:
The text was updated successfully, but these errors were encountered: