From: Rafael Espindola Date: Sun, 28 Mar 2010 22:19:17 +0000 (+0000) Subject: Drop default arguments no one is using. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1279deea7981fc66adeb941aa08f2753c096684c;p=clang Drop default arguments no one is using. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99783 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 111be55621..f59456edf8 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -1755,7 +1755,7 @@ class FunctionType : public Type { 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) {}