aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-07-15 19:34:04 +0000
committerSteve Naroff <snaroff@apple.com>2009-07-15 19:34:04 +0000
commitc02397509bb4057f3a7d6f5f4d764d122ed2381f (patch)
tree5625432616e18f3ea5066f3908348de3ee1b31ee
parent93b33266db83e382ffd2afaf071d8649f00300b9 (diff)
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
-rw-r--r--include/clang/AST/ASTContext.h2
1 files changed, 1 insertions, 1 deletions
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);