summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/DeclObjC.cpp
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-01-25 17:32:04 +0000
committerAlp Toker <alp@nuanti.com>2014-01-25 17:32:04 +0000
commit1f307f49efc6cb93aedb5b5b9fb017a2b1421960 (patch)
tree9b268ad57c1ec27d9fa8b6c4120cf08da9ccd92e /clang/lib/AST/DeclObjC.cpp
parent6a6ff05b57a28b1b1e6ac4b5f110394baee342b3 (diff)
downloadbcm5719-llvm-1f307f49efc6cb93aedb5b5b9fb017a2b1421960.tar.gz
bcm5719-llvm-1f307f49efc6cb93aedb5b5b9fb017a2b1421960.zip
Remove obsolete ObjCMethodDecl arg_type iterator functions
These were set into deprecation in r199773. llvm-svn: 200086
Diffstat (limited to 'clang/lib/AST/DeclObjC.cpp')
-rw-r--r--clang/lib/AST/DeclObjC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp
index ed8a0bb748f..ce0845681ab 100644
--- a/clang/lib/AST/DeclObjC.cpp
+++ b/clang/lib/AST/DeclObjC.cpp
@@ -860,7 +860,7 @@ ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const {
if (noParams < 1 || noParams > 3)
family = OMF_None;
else {
- ObjCMethodDecl::param_type_iterator it = arg_type_begin();
+ ObjCMethodDecl::param_type_iterator it = param_type_begin();
QualType ArgT = (*it);
if (!ArgT->isObjCSelType()) {
family = OMF_None;
OpenPOWER on IntegriCloud