diff options
Diffstat (limited to 'clang/Sema/Sema.h')
-rw-r--r-- | clang/Sema/Sema.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/Sema/Sema.h b/clang/Sema/Sema.h index 8359999990f..151ce5dd466 100644 --- a/clang/Sema/Sema.h +++ b/clang/Sema/Sema.h @@ -208,6 +208,10 @@ public: SourceLocation RAngleBracketLoc, SourceLocation LParenLoc, ExprTy *E, SourceLocation RParenLoc); + + /// ParseCXXBoolLiteral - Parse {true,false} literals. + virtual ExprResult ParseCXXBoolLiteral(SourceLocation OpLoc, + tok::TokenKind Kind); }; |