@@ -7,7 +7,7 @@ newtype RepresentationQuery =
7
7
TBitFieldsShallBeUsedOnlyWhenInterfacingToHardwareOrConformingToCommunicationProtocolsQuery ( ) or
8
8
TAuditPossibleHardwareInterfaceDueToBitFieldUsageInDataTypeDefinitionQuery ( ) or
9
9
TObjectAssignedToAnOverlappingObjectQuery ( ) or
10
- TDoNotPassAliasedPointerToRestrictQualifiedParamQuery ( ) or
10
+ TDoNotPassAliasedPointerToParamQuery ( ) or
11
11
TUnderlyingBitRepresentationsOfFloatingPointValuesUsedQuery ( ) or
12
12
TNamedBitFieldsWithSignedIntegerTypeShallHaveALengthOfMoreThanOneBitQuery ( ) or
13
13
TMemsetUsedToAccessObjectRepresentationQuery ( ) or
@@ -43,11 +43,11 @@ predicate isRepresentationQueryMetadata(Query query, string queryId, string rule
43
43
category = "required"
44
44
or
45
45
query =
46
- // `Query` instance for the `doNotPassAliasedPointerToRestrictQualifiedParam ` query
47
- RepresentationPackage:: doNotPassAliasedPointerToRestrictQualifiedParamQuery ( ) and
46
+ // `Query` instance for the `doNotPassAliasedPointerToParam ` query
47
+ RepresentationPackage:: doNotPassAliasedPointerToParamQuery ( ) and
48
48
queryId =
49
- // `@id` for the `doNotPassAliasedPointerToRestrictQualifiedParam ` query
50
- "cpp/autosar/do-not-pass-aliased-pointer-to-restrict-qualified- param" and
49
+ // `@id` for the `doNotPassAliasedPointerToParam ` query
50
+ "cpp/autosar/do-not-pass-aliased-pointer-to-param" and
51
51
ruleId = "M0-2-1" and
52
52
category = "required"
53
53
or
@@ -119,11 +119,11 @@ module RepresentationPackage {
119
119
TQueryCPP ( TRepresentationPackageQuery ( TObjectAssignedToAnOverlappingObjectQuery ( ) ) )
120
120
}
121
121
122
- Query doNotPassAliasedPointerToRestrictQualifiedParamQuery ( ) {
122
+ Query doNotPassAliasedPointerToParamQuery ( ) {
123
123
//autogenerate `Query` type
124
124
result =
125
- // `Query` type for `doNotPassAliasedPointerToRestrictQualifiedParam ` query
126
- TQueryCPP ( TRepresentationPackageQuery ( TDoNotPassAliasedPointerToRestrictQualifiedParamQuery ( ) ) )
125
+ // `Query` type for `doNotPassAliasedPointerToParam ` query
126
+ TQueryCPP ( TRepresentationPackageQuery ( TDoNotPassAliasedPointerToParamQuery ( ) ) )
127
127
}
128
128
129
129
Query underlyingBitRepresentationsOfFloatingPointValuesUsedQuery ( ) {
0 commit comments