Fix remaining import deprecation messages

This commit is contained in:
Steven Schveighoffer 2016-02-22 16:03:12 -05:00
parent 972227d286
commit b0acb7a394
17 changed files with 81 additions and 62 deletions

View file

@ -473,7 +473,7 @@ if (isNarrowString!R1 && isNarrowString!R2)
immutable limit = min(r1.length, r2.length);
for (size_t i = 0; i < limit;)
{
immutable codeLen = std.utf.stride(r1, i);
immutable codeLen = stride(r1, i);
size_t j = 0;
for (; j < codeLen && i < limit; ++i, ++j)