Ignore:
Timestamp:
05/23/11 15:04:32 (13 years ago)
Author:
tbretz
Message:
Replaced stringstream in log-stream by ostringstream.
File:
1 edited

Legend:

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

    r10720 r10780  
    829829    // instead of fCurrentState.
    830830
    831     stringstream str;
     831    ostringstream str;
    832832    str << "State Transition from " << nold << " to " << nnew << " (" << txt;
    833833    if (!cmd.empty())
     
    924924    if (!evt.IsStateAllowed(fCurrentState))
    925925    {
    926         stringstream msg;
     926        ostringstream msg;
    927927        msg << evt.GetName() << ": Not allowed in state ";
    928928        msg << GetStateDescription() << "... ignored.";
Note: See TracChangeset for help on using the changeset viewer.