diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/spl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/spl.h b/src/lib/spl.h index f55a9fe1f..ea5c32974 100644 --- a/src/lib/spl.h +++ b/src/lib/spl.h @@ -37,13 +37,11 @@ class SPL public: SPL () : _id (dcp::make_uuid()) - , _missing (false) {} SPL (std::string name) : _id (dcp::make_uuid()) , _name (name) - , _missing (false) {} @@ -91,7 +89,7 @@ private: std::string _name; std::vector<SPLEntry> _spl; /** true if any content was missing when read() was last called on this SPL */ - bool _missing; + bool _missing = false; }; |
