Changeset 77097 in vbox
- Timestamp:
- Feb 1, 2019 9:27:26 AM (6 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r77096 r77097 425 425 catch (const std::exception &ex) 426 426 { 427 NOREF(ex);427 RT_NOREF(ex); 428 428 } 429 429 return NULL; … … 517 517 catch (const std::exception &ex) 518 518 { 519 NOREF(ex);519 RT_NOREF(ex); 520 520 } 521 521 return rc; … … 1192 1192 catch (const std::exception &ex) 1193 1193 { 1194 NOREF(ex);1194 RT_NOREF(ex); 1195 1195 AssertFailedStmt(rc = VERR_NOT_FOUND); 1196 1196 } -
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r77075 r77097 82 82 AssertPtrReturn(mFile, E_POINTER); 83 83 int rc2 = mFile->signalWaitEvent(aType, aEvent); 84 NOREF(rc2);84 RT_NOREF(rc2); 85 85 #ifdef DEBUG_andy 86 86 LogFlowFunc(("Signalling events of type=%RU32, file=%p resulted in rc=%Rrc\n",
Note:
See TracChangeset
for help on using the changeset viewer.