summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-plugins/vdr-epgsearch/files/vdr-epgsearch-2.4.0_p20210426_gcc11-const.patch')
-rw-r--r--media-plugins/vdr-epgsearch/files/vdr-epgsearch-2.4.0_p20210426_gcc11-const.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/media-plugins/vdr-epgsearch/files/vdr-epgsearch-2.4.0_p20210426_gcc11-const.patch b/media-plugins/vdr-epgsearch/files/vdr-epgsearch-2.4.0_p20210426_gcc11-const.patch
deleted file mode 100644
index b0d756a73b45..000000000000
--- a/media-plugins/vdr-epgsearch/files/vdr-epgsearch-2.4.0_p20210426_gcc11-const.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-the following change to const is necessary since gcc-11
-
-thanks to seahawk1986 @ vdr-portal.de
-https://www.vdr-portal.de/forum/index.php?thread/134005-vdr-2-4-6-kompiliert-mit-gcc-11-0-0-nicht/&postID=1340496#post1340496
-
-Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
-
---- a/conflictcheck.h
-+++ b/conflictcheck.h
-@@ -73,7 +73,7 @@
- class TimerObjSort
- {
- public:
-- bool operator()(cConflictCheckTimerObj* a, cConflictCheckTimerObj* b) {
-+ bool operator()(const cConflictCheckTimerObj* a, const cConflictCheckTimerObj* b) const {
- return (a->Compare(*b) < 0);
- }
- };