Changeset 62370 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 20, 2016 5:12:05 PM (9 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestDnDPrivate.h
r59834 r62370 242 242 uint64_t addProcessed(uint32_t cbDataAdd) 243 243 { 244 const uint64_t cbTotal = getTotal(); 244 const uint64_t cbTotal = getTotal(); NOREF(cbTotal); 245 245 Assert(cbProcessed + cbDataAdd <= cbTotal); 246 246 cbProcessed += cbDataAdd; -
trunk/src/VBox/Main/include/GuestSessionImpl.h
r58552 r62370 103 103 { 104 104 int vrc = SessionTaskOpen::taskThread(NULL, this); 105 NOREF(vrc); 105 106 } 106 107 … … 137 138 { 138 139 int vrc = SessionTaskCopyTo::taskThread(NULL, this); 140 NOREF(vrc); 139 141 } 140 142 … … 169 171 { 170 172 int vrc = SessionTaskCopyFrom::taskThread(NULL, this); 173 NOREF(vrc); 171 174 } 172 175 … … 199 202 { 200 203 int vrc = SessionTaskUpdateAdditions::taskThread(NULL, this); 204 NOREF(vrc); 201 205 } 202 206 -
trunk/src/VBox/Main/include/HGCMObjects.h
r55401 r62370 90 90 uint32_t Handle() 91 91 { 92 return m_core.AvlCore.Key;92 return (uint32_t)m_core.AvlCore.Key; 93 93 }; 94 94
Note:
See TracChangeset
for help on using the changeset viewer.