fix(filesystem_writer): make impl_ private

This commit is contained in:
Marcus Holland-Moritz 2025-03-16 11:45:50 +01:00
parent f343223d0d
commit ae35a80400

View File

@ -65,7 +65,7 @@ class filesystem_writer {
internal::filesystem_writer_detail& get_internal() { return *impl_; }
protected:
private:
std::unique_ptr<internal::filesystem_writer_detail> impl_;
};