[clang] 88d65e1 - [clang][Interp][NFC] Fix a doc comment mixup

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Sun Jul 9 07:16:51 PDT 2023


Author: Timm Bäder
Date: 2023-07-09T16:13:19+02:00
New Revision: 88d65e13464ab200f36082bf4f2613835e677144

URL: https://github.com/llvm/llvm-project/commit/88d65e13464ab200f36082bf4f2613835e677144
DIFF: https://github.com/llvm/llvm-project/commit/88d65e13464ab200f36082bf4f2613835e677144.diff

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/Interp/InterpBlock.h b/clang/lib/AST/Interp/InterpBlock.h
index 8c95d8e122be48..059a32491cfebb 100644
--- a/clang/lib/AST/Interp/InterpBlock.h
+++ b/clang/lib/AST/Interp/InterpBlock.h
@@ -118,10 +118,10 @@ class Block final {
   Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead)
     : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {}
 
-  // Deletes a dead block at the end of its lifetime.
+  /// Deletes a dead block at the end of its lifetime.
   void cleanup();
 
-  // Pointer chain management.
+  /// Pointer chain management.
   void addPointer(Pointer *P);
   void removePointer(Pointer *P);
   void movePointer(Pointer *From, Pointer *To);


        


More information about the cfe-commits mailing list