summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-03 20:18:07 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-03 20:18:07 +0100
commit09e16aa3acf7878b54a4995a0be79890f26db09f (patch)
treefe46fe5a8d980ad0c2e6cfd7300a32a061da9068 /src/dcp.cc
parentfe9bbdf3f5223ee94cb51ba00ddab7f4a6ddb754 (diff)
Assorted test fixes.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index dc0ffeaa..044e1f53 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -69,7 +69,7 @@ DCP::DCP (boost::filesystem::path directory)
}
template<class T> void
-survivable_error (bool keep_going, list<shared_ptr<DCPReadError> >* errors, T const & e)
+survivable_error (bool keep_going, dcp::DCP::ReadErrors* errors, T const & e)
{
if (keep_going) {
if (errors) {
@@ -81,7 +81,7 @@ survivable_error (bool keep_going, list<shared_ptr<DCPReadError> >* errors, T co
}
void
-DCP::read (bool keep_going, list<shared_ptr<DCPReadError> >* errors)
+DCP::read (bool keep_going, ReadErrors* errors)
{
/* Read the ASSETMAP */