Use char ranges to avoid compilation errors on elder compilers

This commit is contained in:
Eugen Wissner 2017-05-12 21:46:48 +02:00
parent 29d883150e
commit 36dad80e18
1 changed files with 6 additions and 6 deletions

View File

@ -1432,15 +1432,15 @@ struct String
}
body
{
const oldLen = length;
const offset = r.end - this.data;
auto oldLen = this.data + length;
const inserted = insertBack(el);
bringToFront(this.data[offset .. oldLen], this.data[oldLen .. length]);
bringToFront(ByCodeUnit!char(this, r.end, oldLen),
ByCodeUnit!char(this, oldLen, this.data + length));
return inserted;
}
/// bringToFront before 2.073 isn't @nogc for chars.
@safe unittest
///
@safe @nogc unittest
{
auto s = String("Нельзя казнить помиловать.");
s.insertAfter(s[0 .. 27], ",");
@ -1469,7 +1469,7 @@ struct String
}
///
@safe unittest
@safe @nogc unittest
{
auto s = String("Нельзя казнить помиловать.");
s.insertBefore(s[27 .. $], ",");