VirtualBox

Ignore:
Timestamp:
May 22, 2015 2:06:29 PM (10 years ago)
Author:
vboxsync
Message:

postfix iterator => prefix iterator and stlSize => stlEmpty where appropriate

Location:
trunk/src/VBox/Frontends/VBoxAutostart
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostartStart.cpp

    r43967 r56030  
    114114
    115115        if (   SUCCEEDED(rc)
    116             && listVM.size())
     116            && !listVM.empty())
    117117        {
    118118            ULONG uDelayCurr = 0;
     
    122122
    123123            std::list<AUTOSTARTVM>::iterator it;
    124             for (it = listVM.begin(); it != listVM.end(); it++)
     124            for (it = listVM.begin(); it != listVM.end(); ++it)
    125125            {
    126126                ComPtr<IMachine> machine;
  • trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostartStop.cpp

    r55214 r56030  
    147147
    148148        if (   SUCCEEDED(rc)
    149             && listVM.size())
     149            && !listVM.empty())
    150150        {
    151151            std::list<AUTOSTOPVM>::iterator it;
    152             for (it = listVM.begin(); it != listVM.end(); it++)
     152            for (it = listVM.begin(); it != listVM.end(); ++it)
    153153            {
    154154                MachineState_T enmMachineState;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette