Skip to content

Commit 56f833d

Browse files
committed
Fix many deprecations
1 parent 986fee5 commit 56f833d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/tt/binary/helpers.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ auto StructExecuter(alias _expr, D, S, P, R)(ref D CUR, ref S STRUCT, ref P PARE
7171

7272
foreach(name; __traits(allMembers, T))
7373
{
74-
static if(__traits(getProtection, mixin(`T.` ~ name)) == `public`)
74+
static if(__traits(getProtection, __traits(getMember, T, name)) == `public`)
7575
{
7676
alias E = Alias!(__traits(getMember, T, name));
7777

0 commit comments

Comments
 (0)