File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
cpp/common/src/codingstandards/cpp Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ class SpecialFunction extends Function {
36
36
}
37
37
38
38
/** A special function which throws an exception. */
39
- abstract class SpecialExceptionThrowingFunction extends ExceptionPathGraph:: ExceptionThrowingFunction {
39
+ abstract class SpecialExceptionThrowingFunction extends ExceptionPathGraph:: ExceptionThrowingFunction
40
+ {
40
41
SpecialExceptionThrowingFunction ( ) { exists ( getAFunctionThrownType ( this , _) ) }
41
42
42
43
/** Gets a description for this exception throwing. */
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ private class ResourceReleaseCall extends ExternalSideEffect::Range {
16
16
}
17
17
18
18
private class DirectStaticStorageDurationVariableModification extends VariableEffect ,
19
- GlobalSideEffect:: Range {
19
+ GlobalSideEffect:: Range
20
+ {
20
21
DirectStaticStorageDurationVariableModification ( ) {
21
22
this .getTarget ( ) instanceof StaticStorageDurationVariable
22
23
}
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ class RandomNumberEngineCreation extends TRandomNumberEngineCreation {
54
54
* A `ConstructorCall` which targets a `RandomNumberEngine`.
55
55
*/
56
56
class RandomNumberEngineConstructorCall extends TRandomNumberEngineConstructorCall ,
57
- RandomNumberEngineCreation {
57
+ RandomNumberEngineCreation
58
+ {
58
59
ConstructorCall getConstructorCall ( ) { this = TRandomNumberEngineConstructorCall ( result ) }
59
60
60
61
override Element getExclusionElement ( ) { result = getConstructorCall ( ) }
@@ -82,7 +83,8 @@ class RandomNumberEngineConstructorCall extends TRandomNumberEngineConstructorCa
82
83
* This is because no `ConstructorCall`s are generated in this case.
83
84
*/
84
85
class RandomNumberEngineMemberVariableDefaultInit extends TRandomNumberEngineMemberVariableDefaultInit ,
85
- RandomNumberEngineCreation {
86
+ RandomNumberEngineCreation
87
+ {
86
88
MemberVariable getMemberVariable ( ) {
87
89
this = TRandomNumberEngineMemberVariableDefaultInit ( result , _)
88
90
}
You can’t perform that action at this time.
0 commit comments