diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-06-19 00:36:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-03 22:46:44 +0200 |
| commit | edd0d1e9520f1da97fe8d8dc30719a3b898d9537 (patch) | |
| tree | 74423b7e86f0df28ab354529db0d5af7be494bd3 | |
| parent | 0f8e247fd6d834cb59e840f5042d96bc479b6185 (diff) | |
Cleanup: use a member initializer.
| -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; }; |
