1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed bug from new default ctor

This commit is contained in:
Brian Fiete 2020-01-25 10:04:52 -08:00
parent 6ba8bdc14c
commit c48c292f78
3 changed files with 44 additions and 29 deletions

View file

@ -93,6 +93,11 @@ namespace System.Threading
}
}
private this()
{
}
public this(ThreadStart start)
{
Debug.Assert(start != null);