summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-01 00:27:34 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-01 23:43:00 +0200
commita0814a2e44e56d0378c6a47ca9c741de5cfe6356 (patch)
tree4deb871f14830d22d3ed5afe9ea69241a37db16b /test
parenta82a17578812a41232d69ea10d88b19004418583 (diff)
Remove VerificationNote::note.tidy-verify
Diffstat (limited to 'test')
-rw-r--r--test/verify_test.cc11
1 files changed, 1 insertions, 10 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc
index 7f32c438..e3cff85a 100644
--- a/test/verify_test.cc
+++ b/test/verify_test.cc
@@ -242,10 +242,9 @@ string
to_string(dcp::VerificationNote const& note)
{
string s = note_to_string(note) + dcp::String::compose(
- "\n [%1 %2 %3 %4 %5 %6 %7 ",
+ "\n [%1 %2 %3 %4 %5 %6 ",
static_cast<int>(note.type()),
static_cast<int>(note.code()),
- note.note().get_value_or("<none>"),
note.file().get_value_or("<none>"),
note.line().get_value_or(0),
note.frame().get_value_or(0),
@@ -420,14 +419,6 @@ note(dcp::VerificationNote::Code code, shared_ptr<const dcp::CPL> cpl)
static
dcp::VerificationNote
-note(dcp::VerificationNote::Code code, string note, shared_ptr<const dcp::CPL> cpl)
-{
- return dcp::VerificationNote(code, note).set_cpl_id(cpl->id());
-}
-
-
-static
-dcp::VerificationNote
note(dcp::VerificationNote::Code code, boost::filesystem::path path, shared_ptr<const dcp::CPL> cpl)
{
return dcp::VerificationNote(code, path).set_cpl_id(cpl->id());