File tree Expand file tree Collapse file tree 2 files changed +20
-20
lines changed
cpp/misra/test/rules/RULE-5-0-1 Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1- | test.cpp:1:18 :1:22 | ??= | Trigraph-like sequence used in string literal. |
2- | test.cpp:2:19 :2:23 | ??/ | Trigraph-like sequence used in string literal. |
3- | test.cpp:3:19 :3:23 | ??' | Trigraph-like sequence used in string literal. |
4- | test.cpp:4:19 :4:23 | ??( | Trigraph-like sequence used in string literal. |
5- | test.cpp:5:19 :5:23 | ??) | Trigraph-like sequence used in string literal. |
6- | test.cpp:6:19 :6:23 | ??! | Trigraph-like sequence used in string literal. |
7- | test.cpp:7:19 :7:23 | ??< | Trigraph-like sequence used in string literal. |
8- | test.cpp:8:19 :8:23 | ??> | Trigraph-like sequence used in string literal. |
9- | test.cpp:9:19 :9:23 | ??- | Trigraph-like sequence used in string literal. |
1+ | test.cpp:1:17 :1:21 | ??= | Trigraph-like sequence used in string literal. |
2+ | test.cpp:2:18 :2:22 | ??/ | Trigraph-like sequence used in string literal. |
3+ | test.cpp:3:18 :3:22 | ??' | Trigraph-like sequence used in string literal. |
4+ | test.cpp:4:18 :4:22 | ??( | Trigraph-like sequence used in string literal. |
5+ | test.cpp:5:18 :5:22 | ??) | Trigraph-like sequence used in string literal. |
6+ | test.cpp:6:18 :6:22 | ??! | Trigraph-like sequence used in string literal. |
7+ | test.cpp:7:18 :7:22 | ??< | Trigraph-like sequence used in string literal. |
8+ | test.cpp:8:18 :8:22 | ??> | Trigraph-like sequence used in string literal. |
9+ | test.cpp:9:18 :9:22 | ??- | Trigraph-like sequence used in string literal. |
Original file line number Diff line number Diff line change 1- const char * g = " ??=" ; // NON_COMPLIANT
2- const char * g1 = " ??/" ; // NON_COMPLIANT
3- const char * g2 = " ??'" ; // NON_COMPLIANT
4- const char * g3 = " ??(" ; // NON_COMPLIANT
5- const char * g4 = " ??)" ; // NON_COMPLIANT
6- const char * g5 = " ??!" ; // NON_COMPLIANT
7- const char * g6 = " ??<" ; // NON_COMPLIANT
8- const char * g7 = " ??>" ; // NON_COMPLIANT
9- const char * g8 = " ??-" ; // NON_COMPLIANT
1+ const char *g = " ??=" ; // NON_COMPLIANT
2+ const char *g1 = " ??/" ; // NON_COMPLIANT
3+ const char *g2 = " ??'" ; // NON_COMPLIANT
4+ const char *g3 = " ??(" ; // NON_COMPLIANT
5+ const char *g4 = " ??)" ; // NON_COMPLIANT
6+ const char *g5 = " ??!" ; // NON_COMPLIANT
7+ const char *g6 = " ??<" ; // NON_COMPLIANT
8+ const char *g7 = " ??>" ; // NON_COMPLIANT
9+ const char *g8 = " ??-" ; // NON_COMPLIANT
1010
11- const char * g9 = " \?\? =" ; // COMPLIANT[FALSE_POSITIVE]
12- const char * g10 = " ?=" ; // COMPLIANT
11+ const char *g9 = " \?\? =" ; // COMPLIANT[FALSE_POSITIVE]
12+ const char *g10 = " ?=" ; // COMPLIANT
You can’t perform that action at this time.
0 commit comments