Skip to content

Commit 83e1a8b

Browse files
authored
Merge pull request #816 from github/lcartey/a15-4-4-deviation
A15-4-4: Support deviation on the function declaration
2 parents 97fabeb + 7986b3b commit 83e1a8b

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- `A15-4-4` - `MissingNoExcept.ql`:
2+
- Enable deviations on either declarations or definitions.

cpp/autosar/src/rules/A15-4-4/MissingNoExcept.ql

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ predicate mayCallThrowingFunctions(Function f) {
5151

5252
from Function f
5353
where
54-
not isExcluded(f, Exceptions1Package::missingNoExceptQuery()) and
54+
not isExcluded(f.getADeclarationEntry(), Exceptions1Package::missingNoExceptQuery()) and
5555
// No thrown exceptions
5656
not exists(getAFunctionThrownType(f, _)) and
5757
// But not marked noexcept(true)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" ?>
2+
<codingstandards>
3+
<!--GENERATED: DO NOT MODIFY. Changes should be made to coding-standards.yml instead.-->
4+
<deviations>
5+
<deviations-entry>
6+
<rule-id>A15-4-4</rule-id>
7+
<justification>Suppress entry.</justification>
8+
<code-identifier>a-15-4-4-deviation</code-identifier>
9+
</deviations-entry>
10+
</deviations>
11+
</codingstandards>

cpp/autosar/test/rules/A15-4-4/test.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,12 @@ std::string test_fp_reported_in_424(
5656
s3.append(s1.c_str(), s1.size());
5757
s3.append(s2.c_str(), s2.size());
5858
return s3;
59-
}
59+
}
60+
61+
void test_no_except_deviated_decl(); // a-15-4-4-deviation
62+
63+
void test_no_except_deviated_decl() {}
64+
65+
void test_no_except_deviated_defn();
66+
67+
void test_no_except_deviated_defn() {} // a-15-4-4-deviation

0 commit comments

Comments
 (0)