From edd0d1e9520f1da97fe8d8dc30719a3b898d9537 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 19 Jun 2025 00:36:12 +0200 Subject: Cleanup: use a member initializer. --- src/lib/spl.h | 4 +--- 1 file changed, 1 insertion(+), 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 _spl; /** true if any content was missing when read() was last called on this SPL */ - bool _missing; + bool _missing = false; }; -- cgit v1.2.3