From 3edc419b7e531ee4f290862b9fe3ac574162fe06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Wed, 5 Jul 2023 08:52:08 +0200 Subject: [PATCH] [clang][Interp][NFC] Fix a doc comment --- clang/lib/AST/Interp/Record.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/AST/Interp/Record.h b/clang/lib/AST/Interp/Record.h index 24092f5..940b4c9 100644 --- a/clang/lib/AST/Interp/Record.h +++ b/clang/lib/AST/Interp/Record.h @@ -65,7 +65,7 @@ public: const Base *getBase(QualType T) const; /// Returns a virtual base descriptor. const Base *getVirtualBase(const RecordDecl *RD) const; - // Returns the destructor of the record, if any. + /// Returns the destructor of the record, if any. const CXXDestructorDecl *getDestructor() const { if (const auto *CXXDecl = dyn_cast(Decl)) return CXXDecl->getDestructor(); -- 2.7.4