ReleaseNotes: add note about ASTContext::WCharTy and WideCharTy

llvm-svn: 182280
This commit is contained in:
Hans Wennborg 2013-05-20 14:53:06 +00:00
parent dcf0922720
commit 3cb56a4f34
1 changed files with 9 additions and 0 deletions

View File

@ -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