Changeset 72827 in vbox
- Timestamp:
- Jul 3, 2018 3:28:17 PM (6 years ago)
- Location:
- trunk/src/VBox/HostServices
- Files:
-
- 2 edited
-
DragAndDrop/service.cpp (modified) (3 diffs)
-
GuestControl/service.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r69500 r72827 1172 1172 } 1173 1173 1174 Assert(m_clientQueue. size() == 0);1174 Assert(m_clientQueue.empty()); 1175 1175 1176 1176 /* Tell the host that everything went well. */ … … 1196 1196 } 1197 1197 1198 if (m_clientMap. size() == 0) /* At least one client on the guest connected? */1198 if (m_clientMap.empty()) /* At least one client on the guest connected? */ 1199 1199 { 1200 1200 /* … … 1215 1215 1216 1216 /* Any clients in our queue ready for processing the next command? */ 1217 if (m_clientQueue. size() == 0)1217 if (m_clientQueue.empty()) 1218 1218 { 1219 1219 LogFlowFunc(("All clients (%zu) busy -- delaying execution\n", m_clientMap.size())); -
trunk/src/VBox/HostServices/GuestControl/service.cpp
r71431 r72827 556 556 const HostCommand *GetCurrent(void) 557 557 { 558 if ( !mHostCmdList.size())558 if (mHostCmdList.empty()) 559 559 return NULL; 560 560 … … 1073 1073 u32ClientID, mClientStateMap.size())); 1074 1074 1075 AssertMsg( mClientStateMap.size(),1075 AssertMsg(!mClientStateMap.empty(), 1076 1076 ("No clients in list anymore when there should (client ID=%RU32)\n", u32ClientID)); 1077 1077
Note:
See TracChangeset
for help on using the changeset viewer.

