[clang] 474e1bc - [AST] Remove an unnecessary continue (NFC)
Kazu Hirata via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 11 23:04:15 PST 2021
Author: Kazu Hirata
Date: 2021-12-11T23:04:08-08:00
New Revision: 474e1bc96d0c7b8da85b5ba1a52ebfc5f4a6835f
URL: https://github.com/llvm/llvm-project/commit/474e1bc96d0c7b8da85b5ba1a52ebfc5f4a6835f
DIFF: https://github.com/llvm/llvm-project/commit/474e1bc96d0c7b8da85b5ba1a52ebfc5f4a6835f.diff
LOG: [AST] Remove an unnecessary continue (NFC)
Added:
Modified:
clang/lib/AST/CommentBriefParser.cpp
Removed:
################################################################################
diff --git a/clang/lib/AST/CommentBriefParser.cpp b/clang/lib/AST/CommentBriefParser.cpp
index f9fb5a05fd76..bf9e17993497 100644
--- a/clang/lib/AST/CommentBriefParser.cpp
+++ b/clang/lib/AST/CommentBriefParser.cpp
@@ -28,7 +28,6 @@ void cleanupBrief(std::string &S) {
*O++ = ' ';
PrevWasSpace = true;
}
- continue;
} else {
*O++ = C;
PrevWasSpace = false;
More information about the cfe-commits
mailing list