summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-11 00:16:40 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:23 +0100
commitd95eacd3851a20e52202465ec22b4f72a4983dc8 (patch)
tree1dfc1092ae7d2e6b6b7c313ad808415f578d9712 /src/verify.h
parentcbee0d077e698541afcea82a95bafcea5245ab89 (diff)
Replace std::list with std::vector in the API.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/verify.h b/src/verify.h
index f692e867..88113730 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -38,7 +38,6 @@
#include <boost/function.hpp>
#include <boost/optional.hpp>
#include <string>
-#include <list>
#include <vector>
namespace dcp {
@@ -183,7 +182,7 @@ private:
uint64_t _line;
};
-std::list<VerificationNote> verify (
+std::vector<VerificationNote> verify (
std::vector<boost::filesystem::path> directories,
boost::function<void (std::string, boost::optional<boost::filesystem::path>)> stage,
boost::function<void (float)> progress,