Assorted C++11/formatting cleanups.
[dcpomatic.git] / src / lib / zipper.h
index c2b40556c051b04ab9839d8bcae334a4361f5393..62a6af5b970013af41458aedd0b2a9b9f82f580e 100644 (file)
@@ -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.
 
 
 */
 
+
 #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;
 };