Is there an equivalent for MFC VERIFY() in Qt?
Qt has Q_ASSERT, which is the equivalent of MFC ASSERT(), but MFC also has
the VERIFY() macro, which behaves the same as ASSERT() in Debug, except
for Release:
In the Release version of MFC, VERIFY evaluates the expression but does
not print or interrupt the program. For example, if the expression is a
function call, the call will be made.
Does Qt have an equivalent for VERIFY()?
No comments:
Post a Comment