Changeset 30763 in vbox for trunk/src/VBox/Main/include/VirtualBoxBase.h
- Timestamp:
- Jul 9, 2010 2:08:55 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63550
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxBase.h
r30760 r30763 490 490 491 491 /** 492 * A variant of 'throw' that hits a debug breakpoint first to make 493 * finding the actual thrower possible. 494 */ 495 #if defined (DEBUG) 496 #define DebugBreakThrow(a) throw (a) 497 #else 498 #define DebugBreakThrow(a) \ 499 do { \ 500 RTAssertDebugBreak(); \ 501 throw (a); \ 502 } while (0) 503 #endif 504 505 /** 492 506 * Parent class of VirtualBoxBase which enables translation support (which 493 507 * Main doesn't have yet, but this provides the tr() function which will one
Note:
See TracChangeset
for help on using the changeset viewer.