forked from OSchip/llvm-project
Fix r276069: add default argument for new parameter
llvm-svn: 276073
This commit is contained in:
parent
6114b37838
commit
9aa955b3ae
|
@ -80,12 +80,13 @@ protected:
|
||||||
Expr *RequiresClause);
|
Expr *RequiresClause);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
// FIXME: remove default argument for RequiresClause
|
||||||
static TemplateParameterList *Create(const ASTContext &C,
|
static TemplateParameterList *Create(const ASTContext &C,
|
||||||
SourceLocation TemplateLoc,
|
SourceLocation TemplateLoc,
|
||||||
SourceLocation LAngleLoc,
|
SourceLocation LAngleLoc,
|
||||||
ArrayRef<NamedDecl *> Params,
|
ArrayRef<NamedDecl *> Params,
|
||||||
SourceLocation RAngleLoc,
|
SourceLocation RAngleLoc,
|
||||||
Expr *RequiresClause);
|
Expr *RequiresClause = nullptr);
|
||||||
|
|
||||||
/// \brief Iterates through the template parameters in this list.
|
/// \brief Iterates through the template parameters in this list.
|
||||||
typedef NamedDecl** iterator;
|
typedef NamedDecl** iterator;
|
||||||
|
|
Loading…
Reference in New Issue