Go to the source code of this file.
Defines | |
#define | ENSURE(expr, description) ((void)0) |
Functions | |
void CCAPI | EnsureFailedLine (const TCHAR *AssertDescription, const char *lpszFileName, INT32 nLine) |
This macro is similar to the ASSERT macro, the only difference being that a description is provided of why the failure occured. The symbol _ENSURES is defined if the ENSURE macro expands to something, else is undefined if the ENSURE macro has no effect. IMPORTANT NOTE: ENSURE is obsolete. Use ERROR2xx or ERROR3xx macros instead. |
|
|
|
This macro is similar to the ASSERT macro, the only difference being that a description is provided of why the failure occured. The symbol _ENSURES is defined if the ENSURE macro expands to something, else is undefined if the ENSURE macro has no effect. IMPORTANT NOTE: ENSURE is obsolete. Use ERROR2xx or ERROR3xx macros instead.
Definition at line 372 of file ensure.cpp. 00373 { 00374 InternalAssert( AssertDescription, lpszFileName, nLine, TRUE ); 00375 }
|