From: Douglas Gregor Date: Tue, 15 Dec 2009 16:28:32 +0000 (+0000) Subject: Elaborated types are specifier types, based on a patch from Cornelius X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c67395283dae28408138176cafec00c42987459;p=clang Elaborated types are specifier types, based on a patch from Cornelius git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91431 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 687beaea08..bed7f9b6c7 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -725,6 +725,7 @@ bool Type::isSpecifierType() const { case Typename: case ObjCInterface: case ObjCObjectPointer: + case Elaborated: return true; default: return false;