summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-02 19:08:30 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-02 19:08:30 +0000
commitceb1025c2c8ab1246a51c3967ee5a79773a4e008 (patch)
tree385091c0b89ef1b3ed54c7b8ccc13c83a59a7bec /libs/ardour/ardour/types.h
parent0cb4160ce771b87b2826452132bb1a6de447515f (diff)
Small cleanup: add constructor to InterThreadInfo.
git-svn-id: svn://localhost/ardour2/branches/3.0@7044 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/types.h')
-rw-r--r--libs/ardour/ardour/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/types.h b/libs/ardour/ardour/types.h
index 2bd08cbcdf..39b763a41d 100644
--- a/libs/ardour/ardour/types.h
+++ b/libs/ardour/ardour/types.h
@@ -320,6 +320,8 @@ namespace ARDOUR {
};
struct InterThreadInfo {
+ InterThreadInfo () : done (false), cancel (false), progress (0), thread (0) {}
+
volatile bool done;
volatile bool cancel;
volatile float progress;