Skip to content

Commit c48658f

Browse files
committed
adding back
1 parent 0c9c40a commit c48658f

File tree

1 file changed

+1
-1
lines changed
  • c/misra/test/rules/RULE-1-4

1 file changed

+1
-1
lines changed

c/misra/test/rules/RULE-1-4/test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ typedef int new_type; // COMPLIANT
1212
typedef _Atomic new_type atomic_new_type; // NON_COMPLIANT
1313

1414
void f(int p) {
15-
// int i0 = _Generic(p, int : 0, long : 1); // NON_COMPLIANT[FALSE_NEGATIVE]
15+
int i0 = _Generic(p, int : 0, long : 1); // NON_COMPLIANT[FALSE_NEGATIVE]
1616

1717
_Atomic int i; // NON_COMPLIANT
1818

0 commit comments

Comments
 (0)