summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/verify.cc2
-rw-r--r--src/verify.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 5c6774e8..a61c3a92 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -1848,7 +1848,7 @@ verify_assetmap(Context& context, shared_ptr<const DCP> dcp)
}
-dcp::VerifyResult
+dcp::VerificationResult
dcp::verify (
vector<boost::filesystem::path> directories,
vector<dcp::DecryptedKDM> kdms,
diff --git a/src/verify.h b/src/verify.h
index 6d587d32..77b65760 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -675,14 +675,14 @@ struct VerificationOptions
};
-struct VerifyResult
+struct VerificationResult
{
std::vector<VerificationNote> notes;
std::vector<std::shared_ptr<dcp::DCP>> dcps;
};
-VerifyResult verify(
+VerificationResult verify(
std::vector<boost::filesystem::path> directories,
std::vector<dcp::DecryptedKDM> kdms,
std::function<void (std::string, boost::optional<boost::filesystem::path>)> stage,