-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathDeadCode8.json
More file actions
27 lines (27 loc) · 859 Bytes
/
DeadCode8.json
File metadata and controls
27 lines (27 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"MISRA-C++-2023": {
"RULE-0-2-2": {
"properties": {
"enforcement": "decidable",
"obligation": "required"
},
"queries": [
{
"description": "Unused parameters can indicate a mistake when implementing the function.",
"kind": "problem",
"name": "There shall be no unused named parameters in both virtual and non-virtual functions",
"precision": "very-high",
"severity": "warning",
"short_name": "UnusedParameterMisraCpp",
"tags": [
"scope/single-translation-unit",
"readability",
"maintainability"
],
"shared_implementation_short_name": "UnusedParameter"
}
],
"title": "There shall be no unused named parameters in both virtual and non-virtual functions."
}
}
}