Changeset 103626 in vbox for trunk/include/iprt/nocrt
- Timestamp:
- Mar 1, 2024 12:56:59 AM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/assert.h
r98103 r103626 51 51 using the standard iprt/assert.h building blocks. */ 52 52 #define assert(a_Expr) (RT_LIKELY(!!(a_Expr)) ? (void)0 \ 53 : RTAssertMsg1Weak((const char *)0, __LINE__, __FILE__, RT_GCC_EXTENSION __PRETTY_FUNCTION__), \54 rtCrtAssertPanic(), (void)0)53 : (RTAssertMsg1Weak((const char *)0, __LINE__, __FILE__, RT_GCC_EXTENSION __PRETTY_FUNCTION__), \ 54 rtCrtAssertPanic(), (void)0) ) 55 55 56 56 #endif /* !IPRT_INCLUDED_nocrt_assert_h */
Note:
See TracChangeset
for help on using the changeset viewer.