summaryrefslogtreecommitdiffstats
path: root/include/clang/AST/DeclTemplate.h
diff options
context:
space:
mode:
authorHubert Tong <hubert.reinterpretcast@gmail.com>2016-08-03 22:07:50 +0000
committerHubert Tong <hubert.reinterpretcast@gmail.com>2016-08-03 22:07:50 +0000
commitdebaaf2988793f17959d657cd5fa8df8586b9270 (patch)
treeb5d9347ac5f63fb08bbd5ec74430b31800e7a903 /include/clang/AST/DeclTemplate.h
parentff7d9d46a510ba90fc4c69dee770b4489b60f3f0 (diff)
[Concepts] remove default argument for RequiresClause; NFC
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277658 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/DeclTemplate.h')
-rw-r--r--include/clang/AST/DeclTemplate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/AST/DeclTemplate.h b/include/clang/AST/DeclTemplate.h
index 35356e7237..8671d95c10 100644
--- a/include/clang/AST/DeclTemplate.h
+++ b/include/clang/AST/DeclTemplate.h
@@ -80,13 +80,12 @@ protected:
Expr *RequiresClause);
public:
- // FIXME: remove default argument for RequiresClause
static TemplateParameterList *Create(const ASTContext &C,
SourceLocation TemplateLoc,
SourceLocation LAngleLoc,
ArrayRef<NamedDecl *> Params,
SourceLocation RAngleLoc,
- Expr *RequiresClause = nullptr);
+ Expr *RequiresClause);
/// \brief Iterates through the template parameters in this list.
typedef NamedDecl** iterator;