This is an archive of the discontinued LLVM Phabricator instance.

[AST] fully-qualify template args of outer types in getFullyQualifiedType
AcceptedPublic

Authored by victordk on May 24 2021, 12:04 PM.

Details

Summary

Template args of outer types were not fully-qualified when calling getFullyQualifiedType() for inner types.

For simplicity the patch is a copy-paste of the same call from getFullyQualifiedType().

Diff Detail

Event Timeline

victordk requested review of this revision.May 24 2021, 12:04 PM
victordk created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptMay 24 2021, 12:04 PM
Herald added a subscriber: cfe-commits. · View Herald Transcript
saugustine accepted this revision.Jun 2 2021, 8:19 AM

This is a long-standing bug that needed to be fixed. Thank you!

This revision is now accepted and ready to land.Jun 2 2021, 8:19 AM

This is a long-standing bug that needed to be fixed. Thank you!

Could you commit the patch? I don't think I have commit access.

Committed as 3e55f55048387a8efef01e445d46fc5cf100285d.

Thanks again for the fix.