diff options
author | Alisdair Meredith <public@alisdairm.net> | 2009-07-14 06:30:34 +0000 |
---|---|---|
committer | Alisdair Meredith <public@alisdairm.net> | 2009-07-14 06:30:34 +0000 |
commit | f5c209d23b20ada4a9b6235db50317239cbf6ae1 (patch) | |
tree | 86513b9161dcbc74e0684bd1e0c6b26b47afe712 /lib/Parse/ParseTentative.cpp | |
parent | 127bf318068659471bce3b08c462d2eab6a5e6a5 (diff) |
Basic support for C++0x unicode types. Support for literals will follow in an incremental patch
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseTentative.cpp')
-rw-r--r-- | lib/Parse/ParseTentative.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Parse/ParseTentative.cpp b/lib/Parse/ParseTentative.cpp index 02687a216c..97f6f526d4 100644 --- a/lib/Parse/ParseTentative.cpp +++ b/lib/Parse/ParseTentative.cpp @@ -681,6 +681,8 @@ Parser::TPResult Parser::isCXXDeclarationSpecifier() { case tok::kw_char: case tok::kw_wchar_t: + case tok::kw_char16_t: + case tok::kw_char32_t: case tok::kw_bool: case tok::kw_short: case tok::kw_int: |