diff options
| author | Hans Wennborg <hans@hanshq.net> | 2013-05-20 14:53:06 +0000 |
|---|---|---|
| committer | Hans Wennborg <hans@hanshq.net> | 2013-05-20 14:53:06 +0000 |
| commit | 3cb56a4f34cf73b36e5052b7ce6c9adc97008d27 (patch) | |
| tree | c2d10e0c33317a79c2537d715d4f2b98a8b32534 | |
| parent | dcf092272072ebfdbbde31326d33003bb33776d4 (diff) | |
| download | bcm5719-llvm-3cb56a4f34cf73b36e5052b7ce6c9adc97008d27.tar.gz bcm5719-llvm-3cb56a4f34cf73b36e5052b7ce6c9adc97008d27.zip | |
ReleaseNotes: add note about ASTContext::WCharTy and WideCharTy
llvm-svn: 182280
| -rw-r--r-- | clang/docs/ReleaseNotes.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 34810c24f43..886f7f9c29a 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -126,6 +126,15 @@ in the source, the linkage and a semantic storage class. This was a bit redundant and the semantic storage class has been removed. The method getStorageClass now returns what is written it the source code for that decl. +Wide Character Types +^^^^^^^^^^^^^^^^^^^^ + +The ASTContext class now keeps track of two different types for wide character +types: WCharTy and WideCharTy. WCharTy represents the built-in wchar_t type +available in C++. WideCharTy is the type used for wide character literals; in +C++ it is the same as WCharTy, but in C99, where wchar_t is a typedef, it is an +integer type. + ... libclang |

