Changeset 72827 in vbox for trunk/src/VBox/HostServices/DragAndDrop
- Timestamp:
- Jul 3, 2018 3:28:17 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123372
- File:
-
- 1 edited
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()));
Note:
See TracChangeset
for help on using the changeset viewer.