acelyc111 opened a new pull request, #1217:
URL: https://github.com/apache/incubator-pegasus/pull/1217

   https://github.com/apache/incubator-pegasus/issues/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: refactor dangling-else `CHECK(false, ...)`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to