diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:00:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:00:36 +0100 |
| commit | e741c3ff8270189f294ef8f6a849a0fa7fcc995a (patch) | |
| tree | 5328be6a1968ebe9a72c41da9f7c38f3f0d2e56c /src | |
| parent | 201eed51d026a6e6b837d40f4e3b639847fe7bee (diff) | |
Add CPL annotation text to verification report.
Diffstat (limited to 'src')
| -rw-r--r-- | src/verify_report.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/verify_report.cc b/src/verify_report.cc index 15b38846..e9ed517d 100644 --- a/src/verify_report.cc +++ b/src/verify_report.cc @@ -108,6 +108,9 @@ verify_report(dcp::VerificationResult const& result, Formatter& formatter) for (auto dcp: result.dcps) { auto ul = formatter.unordered_list(); for (auto cpl: dcp->cpls()) { + if (cpl->annotation_text()) { + formatter.list_item(*cpl->annotation_text()); + } formatter.list_item(String::compose("CPL ID: %1", cpl->id())); int reel_index = 1; for (auto reel: cpl->reels()) { |
