Skip to content

Commit

Permalink
Fix Issue 17283 - std.experimental.typecons uses private module members
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanN7 committed Apr 3, 2017
1 parent 1ce2ede commit df400d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions std/typecons.d
Expand Up @@ -4813,7 +4813,7 @@ if (!isMutable!Target)
}

// Make a tuple of non-static function symbols
private template GetOverloadedMethods(T)
package template GetOverloadedMethods(T)
{
import std.meta : Filter;

Expand Down Expand Up @@ -4955,7 +4955,7 @@ version(unittest)
static assert(findCovariantFunction!(UnittestFuncInfo!nomatch, B, methodsB) == ptrdiff_t.max);
}

private template DerivedFunctionType(T...)
package template DerivedFunctionType(T...)
{
static if (!T.length)
{
Expand Down Expand Up @@ -5080,7 +5080,7 @@ package template staticIota(int beg, int end)
}
}

private template mixinAll(mixins...)
package template mixinAll(mixins...)
{
static if (mixins.length == 1)
{
Expand All @@ -5101,7 +5101,7 @@ private template mixinAll(mixins...)
}
}

private template Bind(alias Template, args1...)
package template Bind(alias Template, args1...)
{
alias Bind(args2...) = Template!(args1, args2);
}
Expand Down

0 comments on commit df400d9

Please sign in to comment.