[cfe-commits] r75815 - /cfe/trunk/include/clang/AST/ASTContext.h

Steve Naroff snaroff at apple.com
Wed Jul 15 12:34:04 PDT 2009


Author: snaroff
Date: Wed Jul 15 14:34:04 2009
New Revision: 75815

URL: http://llvm.org/viewvc/llvm-project?rev=75815&view=rev
Log:
Remove default argument, since it isn't being used (suggested by Fariborz).

Modified:
    cfe/trunk/include/clang/AST/ASTContext.h

Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=75815&r1=75814&r2=75815&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Wed Jul 15 14:34:04 2009
@@ -376,7 +376,7 @@
 
   /// 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);
   





More information about the cfe-commits mailing list