From: Felix Domke Date: Tue, 31 Oct 2006 01:48:43 +0000 (+0000) Subject: make operator< const X-Git-Tag: 2.6.0~2806 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/80132b0b269cb147e42c61824a73ad70f707acf5 make operator< const --- 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;