[cfe-commits] r99783 - /cfe/trunk/include/clang/AST/Type.h

Rafael Espindola rafael.espindola at gmail.com
Sun Mar 28 15:19:17 PDT 2010


Author: rafael
Date: Sun Mar 28 17:19:17 2010
New Revision: 99783

URL: http://llvm.org/viewvc/llvm-project?rev=99783&view=rev
Log:
Drop default arguments no one is using.

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

Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=99783&r1=99782&r2=99783&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Sun Mar 28 17:19:17 2010
@@ -1755,7 +1755,7 @@
 protected:
   FunctionType(TypeClass tc, QualType res, bool SubclassInfo,
                unsigned typeQuals, QualType Canonical, bool Dependent,
-               bool noReturn = false, CallingConv callConv = CC_Default)
+               bool noReturn, CallingConv callConv)
     : Type(tc, Canonical, Dependent),
       SubClassData(SubclassInfo), TypeQuals(typeQuals), NoReturn(noReturn),
       CallConv(callConv), ResultType(res) {}





More information about the cfe-commits mailing list