diff options
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) {} |