summaryrefslogtreecommitdiff
path: root/tools/common.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-14 02:02:17 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-14 02:02:17 +0200
commit96d6f783b7dfac04af8a7d77033a3d05e31cfc10 (patch)
tree38c78bc2ab560401f20cd9cde7571f3edd5d6f44 /tools/common.cc
parente97157fd7fe6767fdc2b1fa32df5b821296907a9 (diff)
C++11 tidying.
Diffstat (limited to 'tools/common.cc')
-rw-r--r--tools/common.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/common.cc b/tools/common.cc
index 54bee6b5..13ce9cb0 100644
--- a/tools/common.cc
+++ b/tools/common.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -31,13 +31,15 @@
files in the program, then also delete it here.
*/
+
#include "common.h"
#include "dcp.h"
-using std::dynamic_pointer_cast;
+
using std::shared_ptr;
using std::vector;
+
void
dcp::filter_notes (vector<dcp::VerificationNote>& notes, bool ignore_missing_assets)
{
@@ -52,3 +54,4 @@ dcp::filter_notes (vector<dcp::VerificationNote>& notes, bool ignore_missing_ass
notes = filtered;
}
+