diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-12 01:34:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-12 01:34:51 +0000 |
commit | a2c7ad9c7312df162300ba95828ed3b6c3b38131 (patch) | |
tree | 5c84196c244531273e890454229e737e42c504e5 /lib/Lex/Lexer.cpp | |
parent | 0af574270d3be2b0e73a3379dfaa633746f8fc6f (diff) |
fix misleading comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57396 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Lexer.cpp')
-rw-r--r-- | lib/Lex/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp index 44a32dbe25..a259b2aacf 100644 --- a/lib/Lex/Lexer.cpp +++ b/lib/Lex/Lexer.cpp @@ -135,7 +135,7 @@ Lexer::Lexer(SourceLocation fileloc, const LangOptions &features, // We *are* in raw mode. LexingRawMode = true; - // Never keep comments in raw mode. + // Default to not keeping comments in raw mode. KeepCommentMode = false; } |