mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
Fix remaining import deprecation messages
This commit is contained in:
parent
972227d286
commit
b0acb7a394
17 changed files with 81 additions and 62 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue