diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2010-12-20 13:20:41 +0100 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2010-12-20 13:20:41 +0100 |
| commit | 3c282ef6f5bd54f2b0f4cb407d075cf321405b84 (patch) | |
| tree | a9afd3782ec949278bc11d93a0b42ca58878a7c4 /lib | |
| parent | 1a39cf41ed65d5e7a47b883e338096232ccbc278 (diff) | |
| download | enigma2-3c282ef6f5bd54f2b0f4cb407d075cf321405b84.tar.gz enigma2-3c282ef6f5bd54f2b0f4cb407d075cf321405b84.zip | |
pmt.h: add missing const modifier to capid_pair
Diffstat (limited to 'lib')
| -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 5c8fa582..86b634fc 100644 --- a/lib/dvb/pmt.h +++ b/lib/dvb/pmt.h @@ -185,7 +185,7 @@ public: { uint16_t caid; int capid; - bool operator< (const struct capid_pair &t) { return t.caid < caid; } + bool operator< (const struct capid_pair &t) const { return t.caid < caid; } }; std::vector<videoStream> videoStreams; std::vector<audioStream> audioStreams; |
