Allow default constructing mammoth threads

This commit is contained in:
Drew Galbraith 2023-06-12 19:13:55 -07:00
parent f907c189bb
commit 832d2f6961
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ class Thread {
public: public:
typedef void (*Entry)(void*); typedef void (*Entry)(void*);
Thread() : thread_cap_(0) {}
Thread(Entry e, const void* arg1); Thread(Entry e, const void* arg1);
private: private: