diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-12 07:14:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-12 07:14:34 +0000 |
commit | 89770575cdff2feac4b1fd29f2139d62fd1b23ab (patch) | |
tree | b8d213b18738a9044c2b3f88e54a936a666582ba /clang/lib/Lex/Lexer.cpp | |
parent | 4bf85ffe8374b55d2232646fcfd2458af4a325b7 (diff) | |
download | bcm5719-llvm-89770575cdff2feac4b1fd29f2139d62fd1b23ab.tar.gz bcm5719-llvm-89770575cdff2feac4b1fd29f2139d62fd1b23ab.zip |
fix thought-o
llvm-svn: 60937
Diffstat (limited to 'clang/lib/Lex/Lexer.cpp')
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index f85cfd9f0f0..b071a7525f7 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -860,7 +860,7 @@ bool Lexer::SaveBCPLComment(Token &Result, const char *CurPtr) { /// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline /// character (either \n or \r) is part of an escaped newline sequence. Issue a -/// diagnostic if so. We know that the is inside of a block comment. +/// diagnostic if so. We know that the newline is inside of a block comment. static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr, Lexer *L) { assert(CurPtr[0] == '\n' || CurPtr[0] == '\r'); |