The model-link comments in the QM-generated code cause PRQA warnings about dead code. Apparently, the PRQA tool looks into these comments and they look too much like code, so the PRQA static analyzer flags this as a problem (violation on MISRA-C:2012 required Rule 2.2 "There shall be no dead code"). Here is an example of a problematic link:
//${Cont::Table::SM::active::serving::HUNGRY}
This feature request is about changing the generated model-link comments so that they no longer trigger this warning. The proposed syntax is to add a dot ('.') character after the comment. This apparently makes the comment less suspect as code for the PRQA static analysis tool (and perhaps for other such tools as well). An example of an improved model link is shown below:
//.${Cont::Table::SM::active::serving::HUNGRY}
--MMS
Anonymous
Implemented in QM 4.6.0 and newer. The generated comments are of the form
//., which don't trigger the PRQA warnings.--MMS