Remove a few uses of fully qualified names that rely on a DMD bug

This commit is contained in:
Boris Carvajal 2021-02-21 02:53:49 -03:00
parent fa4682442b
commit 276053dd07
No known key found for this signature in database
GPG key ID: 6517FFB444EB6201
6 changed files with 14 additions and 14 deletions

View file

@ -3636,13 +3636,13 @@ if (isDynamicArray!A)
return app.data;
}
import std.format : FormatSpec;
/// ditto
template toString(Writer)
if (isOutputRange!(Writer, char))
{
import std.format : FormatSpec;
void toString(ref Writer w, scope const ref std.format.FormatSpec!char fmt) const
void toString(ref Writer w, scope const ref FormatSpec!char fmt) const
{
import std.format : formatValue;
import std.range.primitives : put;