Changeset 18054 for trunk/FACT++/src


Ignore:
Timestamp:
01/03/15 17:12:23 (10 years ago)
Author:
tbretz
Message:
My compiler couldn't resolve the inheritance of HandleNewStae
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/StateMachineAsio.h

    r16770 r18054  
    2020                                        this, boost::asio::placeholders::error));
    2121
    22         if (!HandleNewState(Execute(), 0, "by HandleTrigger()"))
     22        if (!T::HandleNewState(Execute(), 0, "by HandleTrigger()"))
    2323            Stop(-1);
    2424    }
     
    5151        while (run_one())
    5252        {
    53             if (!HandleNewState(Execute(), 0, "by Run()"))
     53            if (!T::HandleNewState(Execute(), 0, "by Run()"))
    5454                Stop(-1);
    5555        }
Note: See TracChangeset for help on using the changeset viewer.