We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c7ab1 commit a4bbcc3Copy full SHA for a4bbcc3
clang/include/clang/AST/Type.h
@@ -3613,6 +3613,9 @@ class MemberPointerType : public Type, public llvm::FoldingSetNode {
3613
}
3614
3615
void Profile(llvm::FoldingSetNodeID &ID) {
3616
+ // FIXME: `getMostRecentCXXRecordDecl()` should be possible to use here,
3617
+ // however when external AST sources are used it causes nondeterminism
3618
+ // issues (see https://github.com/llvm/llvm-project/pull/137910).
3619
Profile(ID, getPointeeType(), getQualifier(), getCXXRecordDecl());
3620
3621
0 commit comments