In isStructurallyEquivalent (CXXMethodDecl) there is no check for the isExplicitlyDefaulted property. This can be different from isDefaulted (I think isDefaulted is true when the function is default but generated by the compiler, and isExplicitlyDefaulted means there was a =default in the code.)
In
isStructurallyEquivalent
(CXXMethodDecl) there is no check for theisExplicitlyDefaulted
property. This can be different fromisDefaulted
(I think isDefaulted is true when the function is default but generated by the compiler, and isExplicitlyDefaulted means there was a=default
in the code.)