summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-23 21:43:56 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-23 21:43:56 +0000
commit4a75be24c98b2e285229160d41319c685d32797b (patch)
treea2a6d0fa20f767675c99776bd5619430b9355ee8 /clang/lib/Sema/SemaDecl.cpp
parent8cf2021012eaa1137997b2f0040b060f6e1efb58 (diff)
downloadbcm5719-llvm-4a75be24c98b2e285229160d41319c685d32797b.tar.gz
bcm5719-llvm-4a75be24c98b2e285229160d41319c685d32797b.zip
Eliminate DeclPtrTy() arguments to ActOnDeclarator that are just a very, very weird way to pass "false". No functionality change
llvm-svn: 74007
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r--clang/lib/Sema/SemaDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index eba1d58d602..51a75b3146d 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -3219,7 +3219,7 @@ NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
CurContext = Context.getTranslationUnitDecl();
FunctionDecl *FD =
- dyn_cast<FunctionDecl>(ActOnDeclarator(TUScope, D, DeclPtrTy()).getAs<Decl>());
+ dyn_cast<FunctionDecl>(ActOnDeclarator(TUScope, D).getAs<Decl>());
FD->setImplicit();
CurContext = PrevDC;
OpenPOWER on IntegriCloud