diff options
Diffstat (limited to 'clang/unittests/AST/ASTImporterTest.cpp')
-rw-r--r-- | clang/unittests/AST/ASTImporterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp index 84bfdadae2d..21b76173c10 100644 --- a/clang/unittests/AST/ASTImporterTest.cpp +++ b/clang/unittests/AST/ASTImporterTest.cpp @@ -276,7 +276,7 @@ public: template <typename T> RecordDecl *getRecordDecl(T *D) { auto *ET = cast<ElaboratedType>(D->getType().getTypePtr()); return cast<RecordType>(ET->getNamedType().getTypePtr())->getDecl(); -}; +} // This class provides generic methods to write tests which can check internal // attributes of AST nodes like getPreviousDecl(), isVirtual(), etc. Also, |