X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fzipper.cc;h=2c334dc947fe62c9f25c06d5b47856c623219e32;hb=f706bbb9afd10472e81a051cd5db601d6404377c;hp=d43b18ef0beba9ee86a64740defd64822d53b1b3;hpb=4ead1f24f97edde9b6a77e47947cb188a551b49b;p=dcpomatic.git diff --git a/src/lib/zipper.cc b/src/lib/zipper.cc index d43b18ef0..2c334dc94 100644 --- a/src/lib/zipper.cc +++ b/src/lib/zipper.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2020 Carl Hetherington + Copyright (C) 2020-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,6 +18,7 @@ */ + #include "zipper.h" #include "exceptions.h" #include "dcpomatic_assert.h" @@ -25,9 +26,10 @@ #include #include + using std::string; using std::runtime_error; -using boost::shared_ptr; +using std::shared_ptr; Zipper::Zipper (boost::filesystem::path file) @@ -49,7 +51,7 @@ Zipper::add (string name, string content) shared_ptr copy(new string(content)); _store.push_back (copy); - struct zip_source* source = zip_source_buffer (_zip, copy->c_str(), copy->length(), 0); + auto source = zip_source_buffer (_zip, copy->c_str(), copy->length(), 0); if (!source) { throw runtime_error ("could not create ZIP source"); }