Hi,
I'm working in a k22 project, and I tried to use a old C++ Library, coming from, another project.
If I try to Compiler this code:
class tFsm
{
public:
tFsm(const T& initial_state) {
Init(initial_state); }
...
....
virtual void Go(const T& next_state) {
_ns = next_state;
}
In RUNT-TIME the code goes in MemManage_Handler().
If I delete the virtual keyword, the code Run without problems.
Somebody can help me. It's a question of C++ Dialet? Or I have to set some kind of compiling option?