This patch is to rename check CHECK and make it a C macro, so that
we can evaluate the second argument lazily.
Details
Details
- Reviewers
inglorion • espindola
Diff Detail
Diff Detail
- Build Status
Buildable 12825 Build 12825: arc lint + arc unit
Event Timeline
Comment Actions
How much does this buy us?
I honestly don't know. The aim of this patch is to merge check and checkLazy so that we don't have to make a guess about the cost of evaluating the second argument when we use CHECK.
Comment Actions
Alright, so it's basically like being able to write CHECK instead of check(e) and checkLazy(e, messagefun). I like that.