You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
users should not need to change from CHECK(a == b); style to CHECK_EQ(a, b); to be able to take advantage of this powerful config option which makes compilation lightning fast (by basically turning each assert into a single function call).
onqtam
changed the title
[compile times] make the DOCTEST_CONFIG_SUPER_FAST_ASSERTS identifier affect normal macros
[compile times] make the DOCTEST_CONFIG_SUPER_FAST_ASSERTS identifier affect normal asserts too
Dec 1, 2018
users should not need to change from
CHECK(a == b);
style toCHECK_EQ(a, b);
to be able to take advantage of this powerful config option which makes compilation lightning fast (by basically turning each assert into a single function call).read here for more info:
https://github.com/onqtam/doctest/blob/master/doc/markdown/configuration.md#doctest_config_super_fast_asserts
The text was updated successfully, but these errors were encountered: