Skip to content

Commit 9fca990

Browse files
committed
Fixed compiler warning
1 parent 8d041cb commit 9fca990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DotNext.Metaprogramming/Runtime/CompilerServices/AsyncStateMachineBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ private static MemberExpression[] CreateStateHolderType(Type returnType, bool us
560560
builder.Add(type);
561561
}
562562

563-
slots = builder.Build(sm.Build, out _);
563+
slots = builder.Build<MemberExpression>(sm.Build, out _);
564564
}
565565

566566
Debug.Assert(sm.StateMachine is not null);

0 commit comments

Comments
 (0)