forked from github/codeql-coding-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeclarations4.json
More file actions
27 lines (27 loc) · 931 Bytes
/
Declarations4.json
File metadata and controls
27 lines (27 loc) · 931 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-10-1-2": {
"properties": {
"enforcement": "decidable",
"obligation": "required"
},
"queries": [
{
"description": "Using the volatile qualifier on certain entities has behavior that is not well-defined and can make code harder to understand, especially as its application to these entities does not prevent data races or guarantee safe multithreading.",
"kind": "problem",
"name": "The volatile qualifier shall be used appropriately",
"precision": "very-high",
"severity": "error",
"short_name": "VolatileQualifierNotUsedAppropriately",
"tags": [
"correctness",
"readability",
"maintainability",
"scope/single-translation-unit"
]
}
],
"title": "The volatile qualifier shall be used appropriately"
}
}
}