[clang] bb94817 - [clang][NFC] Remove stray slash

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 4 07:12:54 PDT 2023


Author: Timm Bäder
Date: 2023-09-04T16:12:30+02:00
New Revision: bb94817ecfc5ca7de7a453eec5ad17c9781e24ed

URL: https://github.com/llvm/llvm-project/commit/bb94817ecfc5ca7de7a453eec5ad17c9781e24ed
DIFF: https://github.com/llvm/llvm-project/commit/bb94817ecfc5ca7de7a453eec5ad17c9781e24ed.diff

LOG: [clang][NFC] Remove stray slash

Added: 
    

Modified: 
    clang/lib/Lex/Lexer.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp
index 3f2b0ef8982482..74a02ca4f81f8f 100644
--- a/clang/lib/Lex/Lexer.cpp
+++ b/clang/lib/Lex/Lexer.cpp
@@ -2602,7 +2602,7 @@ bool Lexer::SkipLineComment(Token &Result, const char *CurPtr,
   // \r\n sequence.  This is an efficiency hack (because we know the \n can't
   // contribute to another token), it isn't needed for correctness.  Note that
   // this is ok even in KeepWhitespaceMode, because we would have returned the
-  /// comment above in that mode.
+  // comment above in that mode.
   NewLinePtr = CurPtr++;
 
   // The next returned token is at the start of the line.


        


More information about the cfe-commits mailing list