Skip to content
New issue

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

refactor(macro): use CHECK_* to replace dassert_* (part 2) #38

Closed
wants to merge 5 commits into from

Conversation

acelyc111
Copy link
Owner

@acelyc111 acelyc111 commented Oct 28, 2022

apache#1204

  • dassert -> CHECK
  • dassert/dassert_f(a == b, msg) -> CHECK_EQ_MSG(a, b, msg)
  • dassert/dassert_f(a > b, msg) -> CHECK_GT_MSG(a, b, msg)
  • dassert/dassert_f(a >= b, msg) -> CHECK_GE_MSG(a, b, msg)
  • dassert/dassert_f(a < b, msg) -> CHECK_LT_MSG(a, b, msg)
  • dassert/dassert_f(a <= b, msg) -> CHECK_LE_MSG(a, b, msg)
  • remove some verbose messages

TODO: remove CHECK(false, ...)

@github-actions github-actions bot added the cpp label Oct 28, 2022
@acelyc111 acelyc111 changed the title Check all refactor(macro): use CHECK_* to replace dassert_* (part 2) Oct 29, 2022
@acelyc111 acelyc111 force-pushed the CHECK_all branch 3 times, most recently from 10f7328 to 62a2675 Compare October 30, 2022 01:14
@acelyc111 acelyc111 closed this Nov 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant