diff options
Diffstat (limited to 'src/lib/zipper.h')
| -rw-r--r-- | src/lib/zipper.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/zipper.h b/src/lib/zipper.h index c2b40556c..62a6af5b9 100644 --- a/src/lib/zipper.h +++ b/src/lib/zipper.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2020 Carl Hetherington <cth@carlh.net> + Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,10 +18,12 @@ */ + #include <boost/noncopyable.hpp> #include <boost/filesystem.hpp> #include <vector> + class Zipper : public boost::noncopyable { public: @@ -33,6 +35,6 @@ public: private: struct zip* _zip; - std::vector<std::shared_ptr<std::string> > _store; + std::vector<std::shared_ptr<std::string>> _store; }; |
