diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-31 01:48:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-31 01:48:43 +0000 |
| commit | 80132b0b269cb147e42c61824a73ad70f707acf5 (patch) | |
| tree | 5db2c99b2570b2ead2aa4ad6037e3c55cc1812b1 /lib/dvb | |
| parent | fd5a1e3424a2363e4204f1ac59b467b7cd599d29 (diff) | |
| download | enigma2-80132b0b269cb147e42c61824a73ad70f707acf5.tar.gz enigma2-80132b0b269cb147e42c61824a73ad70f707acf5.zip | |
make operator< const
Diffstat (limited to 'lib/dvb')
| -rw-r--r-- | lib/dvb/pmt.h | 2 |
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; |
