diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-08-01 10:35:27 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-08-01 10:35:27 +0000 |
commit | 39caa088097dbd2c805041bfd964b3fb9026d0be (patch) | |
tree | e2a88eff035a00ac28738d0bb54d1a041e2a15fc /lib/Parse/MinimalAction.cpp | |
parent | b53c784cf6cef2673c481879b44edb3eede8bc2e (diff) |
Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void.
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/MinimalAction.cpp')
-rw-r--r-- | lib/Parse/MinimalAction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/MinimalAction.cpp b/lib/Parse/MinimalAction.cpp index aa886ab458..d895ccf22a 100644 --- a/lib/Parse/MinimalAction.cpp +++ b/lib/Parse/MinimalAction.cpp @@ -51,7 +51,7 @@ void MinimalAction:: ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) { /// isTypeName - This looks at the IdentifierInfo::FETokenInfo field to /// determine whether the name is a type name (objc class name or typedef) or /// not in this scope. -Action::DeclTy * +Action::TypeTy * MinimalAction::isTypeName(const IdentifierInfo &II, Scope *S) { if (TypeNameInfo *TI = II.getFETokenInfo<TypeNameInfo>()) if (TI->isTypeName) |