Skip to content

Commit 706029d

Browse files
committed
fix signature predicate name to not conflict with other definitions
1 parent 161479e commit 706029d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

cpp/common/src/codingstandards/cpp/types/Compatible.qll

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,9 +525,11 @@ module FunctionDeclarationTypeEquivalence<
525525
}
526526
}
527527

528-
signature predicate interestedInFunctions(Function f1, Function f2);
528+
signature predicate interestedInFunctionsByFunction(Function f1, Function f2);
529529

530-
module FunctionEquivalence<TypeEquivalenceSig Config, interestedInFunctions/2 interestedInFuncs> {
530+
module FunctionEquivalence<
531+
TypeEquivalenceSig Config, interestedInFunctionsByFunction/2 interestedInFuncs>
532+
{
531533
private predicate interestedInParameterTypes(Type a, Type b) {
532534
exists(Function aFun, Function bFun, int i |
533535
interestedInFuncs(pragma[only_bind_into](aFun), pragma[only_bind_into](bFun)) and

0 commit comments

Comments
 (0)