Changeset 25520 in vbox
- Timestamp:
- Dec 20, 2009 4:41:28 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56193
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/RTAssertShouldPanic-vbox.cpp
r18371 r25520 58 58 RTDECL(bool) RTAssertShouldPanic(void) 59 59 { 60 /* 61 * Check if panicing is excluded by the the RTAssert settings first. 62 */ 63 if (!RTAssertMayPanic()) 64 return false; 65 60 66 /* 61 67 * Check for the VBOX_ASSERT variable. -
trunk/src/VBox/Runtime/generic/RTAssertShouldPanic-generic.cpp
r22133 r25520 42 42 return false; 43 43 #else 44 return true;44 return RTAssertMayPanic(); 45 45 #endif 46 46 }
Note:
See TracChangeset
for help on using the changeset viewer.