[clang] [Clang] [NFC] Fix trailing whitespace in Parser.h (PR #165498)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 28 18:50:51 PDT 2025
https://github.com/Sirraide created https://github.com/llvm/llvm-project/pull/165498
Many editors and IDEs automatically delete trailing whitespace on save, and this particular one has shown up as an unrelated change in several of my patches that I then had to remove later (and I’ve seen it in other people’s patches too); this has wasted too much of my time, so I’m removing it separately.
>From a564374b93c5499059f6c5b5498bbd153854262f Mon Sep 17 00:00:00 2001
From: Sirraide <aeternalmail at gmail.com>
Date: Wed, 29 Oct 2025 02:45:01 +0100
Subject: [PATCH] [Clang] [NFC] Fix trailing whitespace in Parser.h
---
clang/include/clang/Parse/Parser.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h
index 0d2316f73fb62..dad8efd0f017f 100644
--- a/clang/include/clang/Parse/Parser.h
+++ b/clang/include/clang/Parse/Parser.h
@@ -7677,7 +7677,7 @@ class Parser : public CodeCompletionHandler {
/// [GNU] asm-clobbers:
/// asm-string-literal
/// asm-clobbers ',' asm-string-literal
- /// \endverbatim
+ /// \endverbatim
///
StmtResult ParseAsmStatement(bool &msAsm);
More information about the cfe-commits
mailing list