如何在 C++ 中关闭 ASSERT( x )?
我怀疑某些断言代码有副作用。我想关闭 ASSERT,而不对代码的编译方式进行任何其他更改。我使用的是MSVS2008。从调试切换到发布是行不通的,因为这会改变内存的初始化方式。
I suspect some ASSERTION code is having side effects. I'd like to switch off ASSERT without making any other changes to how my code is compiled. I'm using MSVS2008. Switching from debug to release won't do as that will alter how memory is initialised.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放在头文件顶部包含
cassert
(或包含cassert
的包含)之后,这会重新定义断言宏,以便它扩展为空。
Put this at the top of your header files after the inclusions of
cassert
(or a include that includescassert
)Which redefines the assert marco so that it expands to nothing.
如果您的意思是
assert
,那么应该使用 NDEBUG 宏来控制。If you mean
assert
, then that should be controlled with the NDEBUG macro.