aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Lex/Lexer.h
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2011-08-11 04:06:15 +0000
committerCraig Topper <craig.topper@gmail.com>2011-08-11 04:06:15 +0000
commit2fa4e86b4fdada3b9ecbbbd99965b83ed879f69b (patch)
treea57887c9c34ac5314596b5a98d0850a58c3aa295 /include/clang/Lex/Lexer.h
parent777d6e56ad9b1fed9866daf3ee6486d85c5b7d32 (diff)
Add support for C++0x raw string literals.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Lexer.h')
-rw-r--r--include/clang/Lex/Lexer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Lex/Lexer.h b/include/clang/Lex/Lexer.h
index e24fe9c9ab..3bc44b192a 100644
--- a/include/clang/Lex/Lexer.h
+++ b/include/clang/Lex/Lexer.h
@@ -485,6 +485,8 @@ private:
void LexNumericConstant (Token &Result, const char *CurPtr);
void LexStringLiteral (Token &Result, const char *CurPtr,
tok::TokenKind Kind);
+ void LexRawStringLiteral (Token &Result, const char *CurPtr,
+ tok::TokenKind Kind);
void LexAngledStringLiteral(Token &Result, const char *CurPtr);
void LexCharConstant (Token &Result, const char *CurPtr,
tok::TokenKind Kind);