13
0

Use default constructor for pthread_t in InterthreadInfo ctor

This commit is contained in:
Paul Davis 2013-07-11 11:50:25 -04:00
parent 227cf470ba
commit 157e21369e

View File

@ -29,7 +29,7 @@ namespace ARDOUR {
class InterThreadInfo {
public:
InterThreadInfo () : done (false), cancel (false), progress (0), thread (0) {}
InterThreadInfo () : done (false), cancel (false), progress (0), thread () {}
volatile bool done;
volatile bool cancel;