Changeset 16080 for trunk/FACT++/src


Ignore:
Timestamp:
05/23/13 14:01:58 (11 years ago)
Author:
tbretz
Message:
EventHist can be a list and must not be a deque.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/smartfact.cc

    r16057 r16080  
    355355    };
    356356
    357     class EventHist : public deque<EventElement>
     357    class EventHist : public list<EventElement>
    358358    {
    359359        const boost::posix_time::time_duration deltat; //boost::posix_time::pos_infin
     
    374374        {
    375375            for (auto it=begin(); it!=end();)
    376                 for (it=begin(); it!=end(); it++)
    377                     if (!it->time)
    378                     {
    379                         erase(it);
    380                         break;
    381                     }
     376                if (!it->time)
     377                {
     378                    const auto is = it++;
     379                    erase(is);
     380                }
    382381        }
    383382
Note: See TracChangeset for help on using the changeset viewer.