From: Steve Naroff Date: Wed, 15 Jul 2009 19:34:04 +0000 (+0000) Subject: Remove default argument, since it isn't being used (suggested by Fariborz). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c02397509bb4057f3a7d6f5f4d764d122ed2381f;p=clang Remove default argument, since it isn't being used (suggested by Fariborz). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75815 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index f52d828f67..f10c6b6631 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -376,7 +376,7 @@ public: /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for the /// given interface decl and the conforming protocol list. - QualType getObjCObjectPointerType(QualType OIT = QualType(), + QualType getObjCObjectPointerType(QualType OIT, ObjCProtocolDecl **ProtocolList = 0, unsigned NumProtocols = 0);