Adapt imports of std.format to new structure of std.format.

This commit is contained in:
berni44 2021-03-19 12:12:34 +01:00 committed by The Dlang Bot
parent 309b72f915
commit 6f2a0934a7
25 changed files with 79 additions and 70 deletions

View file

@ -412,7 +412,7 @@ package string urlEncode(scope string[string] values) @safe pure
return "";
import std.array : Appender;
import std.format : formattedWrite;
import std.format.write : formattedWrite;
Appender!string enc;
enc.reserve(values.length * 128);