Changeset 10218 for trunk/FACT++/src/StateMachineImp.cc
- Timestamp:
- 03/03/11 12:45:37 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/StateMachineImp.cc
r10183 r10218 144 144 // queue is empty 145 145 if (fEventQueue.size()) 146 for (Event *q=fEventQueue.front(); q; fEventQueue.pop _front())146 for (Event *q=fEventQueue.front(); q; fEventQueue.pop()) 147 147 delete q; 148 148 } … … 162 162 { 163 163 fMutex.lock(); 164 fEventQueue.push _back(cmd);164 fEventQueue.push(cmd); 165 165 fMutex.unlock(); 166 166 } … … 182 182 // and remove event from the stack 183 183 Event *cmd = fEventQueue.front(); 184 fEventQueue.pop _front();184 fEventQueue.pop(); 185 185 186 186 fMutex.unlock();
Note:
See TracChangeset
for help on using the changeset viewer.