container.array: Fix assigning non-copyable values

Fix #59.
This commit is contained in:
Eugen Wissner 2018-12-18 05:37:52 +01:00
parent e93898d837
commit c293c6c809
1 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ import core.checkedint;
import tanya.algorithm.comparison;
import tanya.algorithm.mutation;
import tanya.exception;
import tanya.functional;
import tanya.memory;
import tanya.meta.trait;
import tanya.meta.transform;
@ -1000,7 +1001,7 @@ struct Array(T)
*/
ref T opIndexAssign(E : T)(auto ref E value, size_t pos)
{
return opIndex(pos) = value;
return opIndex(pos) = forward!value;
}
/// ditto
@ -1685,4 +1686,5 @@ struct Array(T)
@nogc nothrow pure @safe unittest
{
static assert(is(Array!NonCopyable));
static assert(is(typeof({ Array!NonCopyable.init[0] = NonCopyable(); })));
}