Skip to content

Commit

Permalink
[clang][Interp][NFC] Fix a doc comment mixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaederr committed Jul 9, 2023
1 parent 3262aea commit 88d65e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/lib/AST/Interp/InterpBlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 88d65e1

Please sign in to comment.