#ifdef _DEBUG

来源:互联网 发布:手机打电话软件大全 编辑:程序博客网 时间:2024/04/30 09:49
// Assert in debug builds, but don't remove the code in retail builds.
#ifdef _DEBUG
#define chVERIFY(x) chASSERT(x)
#else
#define chVERIFY(x) (x)
#endif
原创粉丝点击