diff options
| -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; |
