Changeset 84865 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jun 17, 2020 7:49:37 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138684
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r84648 r84865 237 237 Utf8Str strErr; 238 238 239 #define CASE_MSG(a_iRc, a_strFormatString,...) \240 case a_iRc: strErr = Utf8StrFmt( a_strFormatString, ##__VA_ARGS__); break;239 #define CASE_MSG(a_iRc, ...) \ 240 case a_iRc: strErr = Utf8StrFmt(__VA_ARGS__); break; 241 241 242 242 /** @todo pData->u32Flags: int vs. uint32 -- IPRT errors are *negative* !!! */ -
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r84745 r84865 417 417 Utf8Str strErr; 418 418 419 #define CASE_MSG(a_iRc, a_strFormatString,...) \420 case a_iRc: strErr = Utf8StrFmt( a_strFormatString, ##__VA_ARGS__); break;419 #define CASE_MSG(a_iRc, ...) \ 420 case a_iRc: strErr = Utf8StrFmt(__VA_ARGS__); break; 421 421 422 422 /** @todo pData->u32Flags: int vs. uint32 -- IPRT errors are *negative* !!! */ -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r84744 r84865 501 501 Utf8Str strErr; 502 502 503 #define CASE_MSG(a_iRc, a_strFormatString,...) \504 case a_iRc: strErr = Utf8StrFmt( a_strFormatString, ##__VA_ARGS__); break;503 #define CASE_MSG(a_iRc, ...) \ 504 case a_iRc: strErr = Utf8StrFmt( __VA_ARGS__); break; 505 505 506 506 /** @todo pData->u32Flags: int vs. uint32 -- IPRT errors are *negative* !!! */
Note:
See TracChangeset
for help on using the changeset viewer.