From: Argyrios Kyrtzidis Date: Sat, 9 Aug 2008 17:11:33 +0000 (+0000) Subject: Handle WChar inside BuiltinType::getName(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46713efe13c89f4ec9cd9546c7b598fe7186089b;p=clang Handle WChar inside BuiltinType::getName(). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54587 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index c4b44afd32..46e685be9d 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -665,6 +665,7 @@ const char *BuiltinType::getName() const { case Float: return "float"; case Double: return "double"; case LongDouble: return "long double"; + case WChar: return "wchar_t"; } }