diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2020-06-05 11:37:47 +0200 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2020-06-05 12:29:47 +0200 |
commit | d3da83f66f13d371f8bb73443fed32d5c820484d (patch) | |
tree | 2455b1d0f737e396e800dabbaa653a42bb162005 /gcc/d/decl.cc | |
parent | 9758d196f57950ea89baa5cdf6ebd7125b5056e0 (diff) | |
download | gcc-d3da83f66f13d371f8bb73443fed32d5c820484d.zip gcc-d3da83f66f13d371f8bb73443fed32d5c820484d.tar.gz gcc-d3da83f66f13d371f8bb73443fed32d5c820484d.tar.bz2 |
d: Merge upstream dmd 6d5bffa54
Removes an unused parameter from Condition::include(), all callers have
been updated in the front-end.
Reviewed-on: https://github.com/dlang/dmd/pull/11229
gcc/d/ChangeLog:
* dmd/MERGE: Merge upstream dmd 6d5bffa54.
* d-builtins.cc (maybe_set_builtin_1): Update call to
Condition::include().
* decl.cc (DeclVisitor::visit(AttribDeclaration *)): Likewise.
* types.cc (layout_aggregate_members): Likewise.
Diffstat (limited to 'gcc/d/decl.cc')
-rw-r--r-- | gcc/d/decl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/d/decl.cc b/gcc/d/decl.cc index 11e6648..d5f8797 100644 --- a/gcc/d/decl.cc +++ b/gcc/d/decl.cc @@ -232,7 +232,7 @@ public: void visit (AttribDeclaration *d) { - Dsymbols *ds = d->include (NULL, NULL); + Dsymbols *ds = d->include (NULL); if (!ds) return; |