Build with -dip1000. Fix #85

This commit is contained in:
2019-04-15 06:42:57 +02:00
parent 9814e5ad8e
commit f66935f40d
12 changed files with 24 additions and 17 deletions

View File

@ -23,7 +23,7 @@ private mixin template InserterCtor()
{
private Container* container;
private this(ref Container container) @trusted
private this(return scope ref Container container) @trusted
{
this.container = &container;
}
@ -163,7 +163,7 @@ if (isArray!Array)
{
private E[] data;
private this(ref Array data) @trusted
private this(return scope ref Array data) @trusted
{
this.data = data[];
}