diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-04-01 00:27:34 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-01 23:43:00 +0200 |
| commit | a0814a2e44e56d0378c6a47ca9c741de5cfe6356 (patch) | |
| tree | 4deb871f14830d22d3ed5afe9ea69241a37db16b /src/verify.cc | |
| parent | a82a17578812a41232d69ea10d88b19004418583 (diff) | |
Remove VerificationNote::note.tidy-verify
Diffstat (limited to 'src/verify.cc')
| -rw-r--r-- | src/verify.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/verify.cc b/src/verify.cc index 40087346..ac12800b 100644 --- a/src/verify.cc +++ b/src/verify.cc @@ -2361,7 +2361,6 @@ dcp::operator== (dcp::VerificationNote const& a, dcp::VerificationNote const& b) { return a.type() == b.type() && a.code() == b.code() && - a.note() == b.note() && a.file() == b.file() && a.line() == b.line() && a.frame() == b.frame() && @@ -2469,10 +2468,6 @@ dcp::operator< (dcp::VerificationNote const& a, dcp::VerificationNote const& b) return a.code() < b.code(); } - if (a.note() != b.note()) { - return less_than_optional(a.note(), b.note()); - } - if (a.file() != b.file()) { return less_than_optional(a.file(), b.file()); } @@ -2621,9 +2616,6 @@ std::ostream& dcp::operator<< (std::ostream& s, dcp::VerificationNote const& note) { s << note_to_string (note); - if (note.note()) { - s << " [" << note.note().get() << "]"; - } if (note.file()) { s << " [" << note.file().get() << "]"; } |
