Code generation for C++ misses new line after the end of namespace
Real-Time Event Frameworks based on active objects & state machines
Brought to you by:
quantum-leaps
The C++ code generator "glues together" the end-of-namespace with the following end-of-declaration comment, for example
} // namespace DPP//$enddecl${Events::TableEvt} ###############...
Instead, the C++ code generator needs to insert a new-line character after the end-of-namespace comment:
} // namespace DPP
//$enddecl${Events::TableEvt} ################################################
Anonymous
Fixed in QM 4.1.1.
--MMS