Skip to content

Commit

Permalink
Merge pull request #590 from hadashiA/ku/fix-ci
Browse files Browse the repository at this point in the history
Fix compilation errors for C# 8
  • Loading branch information
hadashiA authored Dec 9, 2023
2 parents 95b0d0c + 5eedaad commit 651ab83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public override Registration Build() {

Type type = typeof(SystemInstanceProvider<>).MakeGenericType(ImplementationType);
var provider = (IInstanceProvider)Activator.CreateInstance(type, parameters);
return new (ImplementationType, Lifetime, InterfaceTypes, provider);
return new Registration(ImplementationType, Lifetime, InterfaceTypes, provider);
}

public SystemRegistrationBuilder IntoGroup<T>() where T : ComponentSystemGroup {
Expand Down

1 comment on commit 651ab83

@vercel
Copy link

@vercel vercel bot commented on 651ab83 Dec 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.