summaryrefslogtreecommitdiff
path: root/tools/common.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-06 10:47:04 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-22 01:21:00 +0100
commit30dfa051113792305f9704d5a76ffaf57c21063d (patch)
tree4a4055b40bfb64ebf5b7509ef81a104db4a52e46 /tools/common.h
parent9cb23adda9ebe6a76992b68db78ccb638348dac1 (diff)
Use VerificationNote for non-fatal errors in DCP::read.
Diffstat (limited to 'tools/common.h')
-rw-r--r--tools/common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/common.h b/tools/common.h
index cea183db..0ef0b081 100644
--- a/tools/common.h
+++ b/tools/common.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -17,10 +17,10 @@
along with libdcp. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "exceptions.h"
+#include "verify.h"
namespace dcp {
-extern void filter_errors (std::list<boost::shared_ptr<DCPReadError> >& errors, bool ignore_missing_assets);
+extern void filter_notes (std::list<dcp::VerificationNote>& notes, bool ignore_missing_assets);
}