Skip to content

Commit

Permalink
Remove IsImplicitlyDeclared check
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenBond committed Sep 30, 2024
1 parent 050c1c9 commit e919b73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public bool IsEmptyConstructable
t = t.BaseType;
}

foreach (var ctor in Type.Constructors.Where(x => x.IsImplicitlyDeclared))
foreach (var ctor in Type.Constructors)
{
if (ctor.Parameters.Length != 0)
{
Expand Down

0 comments on commit e919b73

Please sign in to comment.