diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-28 22:19:17 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-28 22:19:17 +0000 |
commit | 1279deea7981fc66adeb941aa08f2753c096684c (patch) | |
tree | 663bdc6df2b31a22717fc9659e3801acda9f7c05 | |
parent | 603d6d12cc4cba1ef219a3d55c698c7c87f87adf (diff) |
Drop default arguments no one is using.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99783 91177308-0d34-0410-b5e6-96231b3b80d8
-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) {} |