Changeset 13909 for trunk/FACT++/src
- Timestamp:
- 05/26/12 12:30:26 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/StateMachineImp.cc
r13834 r13909 313 313 bool StateMachineImp::PostEvent(const EventImp &evt, const char *ptr, size_t siz) 314 314 { 315 if ( GetCurrentState()<0 ||GetCurrentState()==kSM_FatalError)315 if (/*GetCurrentState()<0 ||*/ GetCurrentState()==kSM_FatalError) 316 316 { 317 317 Out() << kYellow << "State<0 or FatalError: Event ignored." << endl; … … 361 361 bool StateMachineImp::PostEvent(const EventImp &evt) 362 362 { 363 if ( GetCurrentState()<0 ||GetCurrentState()==kSM_FatalError)363 if (/*GetCurrentState()<0 ||*/ GetCurrentState()==kSM_FatalError) 364 364 { 365 365 Out() << kYellow << "State<0 or FatalError: Event ignored." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.