[clang] 1851858 - [clang][Interp][NFC] Fix a doc comment.
Timm Bäder via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 21 03:49:13 PDT 2023
Author: Timm Bäder
Date: 2023-08-21T12:48:57+02:00
New Revision: 18518582550485ce3d153bb918bf73c257ce259e
URL: https://github.com/llvm/llvm-project/commit/18518582550485ce3d153bb918bf73c257ce259e
DIFF: https://github.com/llvm/llvm-project/commit/18518582550485ce3d153bb918bf73c257ce259e.diff
LOG: [clang][Interp][NFC] Fix a doc comment.
Added:
Modified:
clang/lib/AST/Interp/InterpFrame.h
Removed:
################################################################################
diff --git a/clang/lib/AST/Interp/InterpFrame.h b/clang/lib/AST/Interp/InterpFrame.h
index 6486215a529646..cba4f9560bf56a 100644
--- a/clang/lib/AST/Interp/InterpFrame.h
+++ b/clang/lib/AST/Interp/InterpFrame.h
@@ -139,7 +139,7 @@ class InterpFrame final : public Frame {
return reinterpret_cast<Block *>(Locals.get() + Offset - sizeof(Block));
}
- // Returns the inline descriptor of the local.
+ /// Returns the inline descriptor of the local.
InlineDescriptor *localInlineDesc(unsigned Offset) const {
return reinterpret_cast<InlineDescriptor *>(Locals.get() + Offset);
}
More information about the cfe-commits
mailing list