MISRA.DECL.MANY_DCLSMore than one declarator in one declaration. MISRA-C++ Rule 8-0-1 (required): An init-declarator-list or a member-declarator-list shall consist of a single init-declarator or member-declarator respectively.RationaleWhere multiple declarators appear in the same declaration the type of an identifier may not meet developer expectations. Exampleint32_t i1; int32_t j1; // Compliant int32_t i2, *j2; // Non-compliant int32_t *i3, &j3 = i2; // Non-compliant |