mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 14:10:30 +03:00
Remove obsolete TypeTuple references
Replace following names: std.typetuple -> std.meta TypeTuple -> AliasSeq ParameterTypeTuple -> Parameters FieldTypeTuple -> Fields std.traits requires more work than search/replace and is left unchanged.
This commit is contained in:
parent
8d9d606ef8
commit
d698887729
48 changed files with 643 additions and 645 deletions
|
@ -3288,8 +3288,8 @@ unittest
|
|||
else version (Posix) valid ~= pfdep;
|
||||
else static assert (0);
|
||||
|
||||
import std.typetuple;
|
||||
foreach (T; TypeTuple!(char[], const(char)[], string, wchar[],
|
||||
import std.meta : AliasSeq;
|
||||
foreach (T; AliasSeq!(char[], const(char)[], string, wchar[],
|
||||
const(wchar)[], wstring, dchar[], const(dchar)[], dstring))
|
||||
{
|
||||
foreach (fn; valid)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue