diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-15 16:28:32 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-15 16:28:32 +0000 |
commit | 7c67395283dae28408138176cafec00c42987459 (patch) | |
tree | 99556229c344bc977e43a74e8270863ec78db2e6 | |
parent | da17fd50ad485fd2a1fc5c2f055caacf532992da (diff) |
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
-rw-r--r-- | lib/AST/Type.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; |