[clang] [Clang] Fix fix-it hint regression from #143460 (PR #144069)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 13 05:54:03 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Ross Kirsling (rkirsling)
<details>
<summary>Changes</summary>
Following #<!-- -->143460, `:` began displaying as `colon` in the fix-it hint for a `case` with a missing colon, as is visible in the description of (the separate bug) #<!-- -->144052.
This PR simply reverts a line that didn't need to be changed.
---
Full diff: https://github.com/llvm/llvm-project/pull/144069.diff
1 Files Affected:
- (modified) clang/lib/Parse/ParseStmt.cpp (+1-2)
``````````diff
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp
index 434ea68442819..c0c9bbc2e15c6 100644
--- a/clang/lib/Parse/ParseStmt.cpp
+++ b/clang/lib/Parse/ParseStmt.cpp
@@ -836,8 +836,7 @@ StmtResult Parser::ParseCaseStatement(ParsedStmtContext StmtCtx,
Diag(ExpectedLoc, diag::err_expected_after)
<< "'case'" << tok::colon
- << FixItHint::CreateInsertion(ExpectedLoc,
- tok::getTokenName(tok::colon));
+ << FixItHint::CreateInsertion(ExpectedLoc, ":");
ColonLoc = ExpectedLoc;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/144069
More information about the cfe-commits
mailing list