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;


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to