[clang] e704400 - [clang][Interp][NFC] Fix a doc comment mixup
Timm Bäder via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 19 23:13:20 PDT 2023
Author: Timm Bäder
Date: 2023-07-20T08:12:58+02:00
New Revision: e704400fe5d13d51b12e3c1fbc054cac429bdd6b
URL: https://github.com/llvm/llvm-project/commit/e704400fe5d13d51b12e3c1fbc054cac429bdd6b
DIFF: https://github.com/llvm/llvm-project/commit/e704400fe5d13d51b12e3c1fbc054cac429bdd6b.diff
LOG: [clang][Interp][NFC] Fix a doc comment mixup
Added:
Modified:
clang/lib/AST/Interp/InterpStack.h
Removed:
################################################################################
diff --git a/clang/lib/AST/Interp/InterpStack.h b/clang/lib/AST/Interp/InterpStack.h
index e61d8e6dc7daf6..fd4a04a4d4cefe 100644
--- a/clang/lib/AST/Interp/InterpStack.h
+++ b/clang/lib/AST/Interp/InterpStack.h
@@ -85,7 +85,7 @@ class InterpStack final {
/// Clears the stack without calling any destructors.
void clear();
- // Returns whether the stack is empty.
+ /// Returns whether the stack is empty.
bool empty() const { return StackSize == 0; }
private:
More information about the cfe-commits
mailing list