mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +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
|
@ -1080,7 +1080,7 @@ public:
|
|||
scope(exit) colIndex++;
|
||||
if (indices.length > 0)
|
||||
{
|
||||
foreach(ti, ToType; FieldTypeTuple!(Contents))
|
||||
foreach(ti, ToType; Fields!(Contents))
|
||||
{
|
||||
if (indices[ti] == colIndex)
|
||||
{
|
||||
|
@ -1091,7 +1091,7 @@ public:
|
|||
}
|
||||
else
|
||||
{
|
||||
foreach(ti, ToType; FieldTypeTuple!(Contents))
|
||||
foreach(ti, ToType; Fields!(Contents))
|
||||
{
|
||||
if (ti == colIndex)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue