Changeset 13922 in vbox
- Timestamp:
- Nov 6, 2008 2:30:15 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38935
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r13920 r13922 60 60 #include <string> 61 61 #include <list> 62 #include <iterator>63 62 64 63 namespace guestProp { … … 784 783 /* We count backwards, as the guest should normally be querying the 785 784 * most recent events. */ 786 PropertyList:: const_reverse_iterator it = mGuestNotifications.rbegin();785 PropertyList::reverse_iterator it = mGuestNotifications.rbegin(); 787 786 for ( ; it != mGuestNotifications.rend() 788 787 && it->mTimestamp != u64Timestamp;
Note:
See TracChangeset
for help on using the changeset viewer.