From 80132b0b269cb147e42c61824a73ad70f707acf5 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 31 Oct 2006 01:48:43 +0000 Subject: [PATCH] make operator< const --- lib/dvb/pmt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dvb/pmt.h b/lib/dvb/pmt.h index 185000d9..95d3cc43 100644 --- a/lib/dvb/pmt.h +++ b/lib/dvb/pmt.h @@ -132,7 +132,7 @@ public: int teletext_magazine_number; // used for teletext subtitles }; std::string language_code; - bool operator<(const subtitleStream &s) + bool operator<(const subtitleStream &s) const { if (pid != s.pid) return pid < s.pid; -- 2.30.2