Posts: 7
Threads: 3
Joined: Aug 2015
Reputation:
0
"Type qualifier" and "Storage class specifier" are mentioned in Rule 8.3, but "Type specifier" is not.
Should we think "Type qualifier" includes "Type specifier"?
Thank you,
Mario Ikeda
<t></t>
Posts: 117
Threads: 25
Joined: Apr 2016
Reputation:
0
Doesn't rule 8.4 cover mixing type specifiers between declaration and definition?
<t></t>
Posts: 7
Threads: 3
Joined: Aug 2015
Reputation:
0
Another idea was occurred.
I thought the "name" of the rule means "parameter name" and "typedef name".
But if this includes "type name", "Type specifier" is also mentioned in the rule.
Does this idea work?
Thank you,
Mario Ikeda
<t></t>
Posts: 632
Threads: 18
Joined: Jan 2006
Reputation:
1
Declarations with differing "Type specifiers" fall into two categories:
1. Non-compatible type specifiers are always constraint errors and violate rule 1.1. e.g.
Code:
extern void fn1 ( int x );
void fn1 ( long x ) { ... } /* constraint error violates rule 1.1 */
2. Compatible type specifiers are permitted by this rule as clarified in the exception. e.g.
Code:
extern void fn2 (int y );
void fn2 ( signed int y ) { ... } /* Compliant by exception ( though violates Directive 4.6 ) */
Therefore, this rule does not place any restrictions on the use of the C type specifiers beyond the constraints of the C language.
The rule
does place a restriction on the use of typedef "names" in declarations. They must be the same even if they are defined to have the same basic type.
Posted by and on behalf of the MISRA C Working Group