summaryrefslogtreecommitdiff
path: root/conflictcheck.h
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2021-05-22 13:06:17 +0200
committerJohann Friedrichs <johann.friedrichs@web.de>2021-05-22 13:06:17 +0200
commit43d7ff0fab23ce678a47a9b2ed3431515beeed25 (patch)
treef50fcb94f951f62d8178596ec4d58509f8a9c45e /conflictcheck.h
parentfc309e3841d204554dba001b6f01fcc4c4cc0fc6 (diff)
downloadvdr-plugin-epgsearch-43d7ff0fab23ce678a47a9b2ed3431515beeed25.tar.gz
vdr-plugin-epgsearch-43d7ff0fab23ce678a47a9b2ed3431515beeed25.tar.bz2
Fix compiling with gcc11 - thanks to Martin Dummer
Diffstat (limited to 'conflictcheck.h')
-rw-r--r--conflictcheck.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/conflictcheck.h b/conflictcheck.h
index 6da8972..2b9cda4 100644
--- a/conflictcheck.h
+++ b/conflictcheck.h
@@ -70,7 +70,7 @@ public:
class TimerObjSort
{
public:
- bool operator()(cConflictCheckTimerObj* a, cConflictCheckTimerObj* b) {
+ bool operator()(const cConflictCheckTimerObj* a, const cConflictCheckTimerObj* b) const {
return (a->Compare(*b) < 0);
}
};