mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 14:10:30 +03:00
Remove a few uses of fully qualified names that rely on a DMD bug
This commit is contained in:
parent
fa4682442b
commit
276053dd07
6 changed files with 14 additions and 14 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue