Changeset 30781 in vbox
- Timestamp:
- Jul 12, 2010 9:06:47 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxBase.h
r30764 r30781 408 408 * finding the actual thrower possible. 409 409 */ 410 #if defined (DEBUG) 411 #define DebugBreakThrow(a) throw (a) 412 #else 410 #ifdef DEBUG 413 411 #define DebugBreakThrow(a) \ 414 412 do { \ 415 413 RTAssertDebugBreak(); \ 416 414 throw (a); \ 417 415 } while (0) 418 416 #endif 417 #else 418 #define DebugBreakThrow(a) throw (a) 419 419 420 420 /**
Note:
See TracChangeset
for help on using the changeset viewer.