From 1279deea7981fc66adeb941aa08f2753c096684c Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sun, 28 Mar 2010 22:19:17 +0000 Subject: [PATCH] Drop default arguments no one is using. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99783 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {} -- 2.40.0