Author: Timm Bäder
Date: 2023-07-05T09:05:53+02:00
New Revision: 3edc419b7e531ee4f290862b9fe3ac574162fe06

URL: 
https://github.com/llvm/llvm-project/commit/3edc419b7e531ee4f290862b9fe3ac574162fe06
DIFF: 
https://github.com/llvm/llvm-project/commit/3edc419b7e531ee4f290862b9fe3ac574162fe06.diff

LOG: [clang][Interp][NFC] Fix a doc comment

Added: 
    

Modified: 
    clang/lib/AST/Interp/Record.h

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/Interp/Record.h b/clang/lib/AST/Interp/Record.h
index 24092f57c0d941..940b4c9ebf592a 100644
--- a/clang/lib/AST/Interp/Record.h
+++ b/clang/lib/AST/Interp/Record.h
@@ -65,7 +65,7 @@ class Record final {
   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<CXXRecordDecl>(Decl))
       return CXXDecl->getDestructor();


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to