mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 06:05:43 +01:00
Use default constructor for pthread_t in InterthreadInfo ctor
This commit is contained in:
parent
227cf470ba
commit
157e21369e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue