Skip to content

Commit

Permalink
Fix many deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Temtaime committed Dec 31, 2017
1 parent 986fee5 commit 56f833d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/tt/binary/helpers.d
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ auto StructExecuter(alias _expr, D, S, P, R)(ref D CUR, ref S STRUCT, ref P PARE

foreach(name; __traits(allMembers, T))
{
static if(__traits(getProtection, mixin(`T.` ~ name)) == `public`)
static if(__traits(getProtection, __traits(getMember, T, name)) == `public`)
{
alias E = Alias!(__traits(getMember, T, name));

Expand Down

0 comments on commit 56f833d

Please sign in to comment.