aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-10-31 01:48:43 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-10-31 01:48:43 +0000
commit80132b0b269cb147e42c61824a73ad70f707acf5 (patch)
tree5db2c99b2570b2ead2aa4ad6037e3c55cc1812b1 /lib/dvb
parentfd5a1e3424a2363e4204f1ac59b467b7cd599d29 (diff)
downloadenigma2-80132b0b269cb147e42c61824a73ad70f707acf5.tar.gz
enigma2-80132b0b269cb147e42c61824a73ad70f707acf5.zip
make operator< const
Diffstat (limited to 'lib/dvb')
-rw-r--r--lib/dvb/pmt.h2
1 files changed, 1 insertions, 1 deletions
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;