summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-22 21:40:41 +0100
committerCarl Hetherington <cth@carlh.net>2026-03-22 23:51:00 +0100
commit5ddb909ac7033d4becffa39dadbb14b8ab4ca0ab (patch)
tree8337cb8d5482d19afd7ae2098c6e2dc0d27e0893 /src
parentd02b58a6edf47e10e1c117dd9166d5a009cce960 (diff)
Fix strange use of != in operator<
Diffstat (limited to 'src')
-rw-r--r--src/verify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 96bca799..59208779 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -2452,7 +2452,7 @@ dcp::operator< (dcp::VerificationNote const& a, dcp::VerificationNote const& b)
return less_than_optional(a.reel_index(), b.reel_index());
}
- return a.frame_rate().get_value_or(0) != b.frame_rate().get_value_or(0);
+ return less_than_optional(a.frame_rate(), b.frame_rate());
}