Changeset 85086 in vbox for trunk/src/VBox/Frontends/VBoxBugReport
- Timestamp:
- Jul 7, 2020 5:01:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReport.h
r84030 r85086 32 32 */ 33 33 34 /* @todo not sure if using a separate namespace would be beneficial */34 /** @todo not sure if using a separate namespace would be beneficial */ 35 35 36 36 #include <iprt/path.h> … … 48 48 /* Base */ 49 49 50 DECL INLINE(void) handleRtError(int rc, const char *pszMsgFmt, ...)50 DECL_INLINE_THROW(void) handleRtError(int rc, const char *pszMsgFmt, ...) 51 51 { 52 52 if (RT_FAILURE(rc)) … … 61 61 } 62 62 63 DECL INLINE(void) handleComError(HRESULT hr, const char *pszMsgFmt, ...)63 DECL_INLINE_THROW(void) handleComError(HRESULT hr, const char *pszMsgFmt, ...) 64 64 { 65 65 if (FAILED(hr))
Note:
See TracChangeset
for help on using the changeset viewer.