This is an archive of the discontinued LLVM Phabricator instance.

[AST] Remove ASTContext from getThisType (NFC)
ClosedPublic

Authored by modocache on Jan 9 2019, 11:35 AM.

Details

Summary

https://reviews.llvm.org/D54862 removed the usages of ASTContext& from
within the CXXMethodDecl::getThisType method. Remove the parameter
altogether, as well as all usages of it. This does not result in any
functional change because the parameter was unused since
https://reviews.llvm.org/D54862.

Test Plan: check-clang

Diff Detail

Repository
rC Clang

Event Timeline

modocache created this revision.Jan 9 2019, 11:35 AM
mikael accepted this revision.Jan 10 2019, 5:37 AM

The changes looks good to me.

This revision is now accepted and ready to land.Jan 10 2019, 5:37 AM
This revision was automatically updated to reflect the committed changes.

Great, thanks for the review!