summarylogtreecommitdiffstats
path: root/13_suspendoutput_remove_template_redefine.patch
diff options
context:
space:
mode:
authorManuel Reimer2021-01-02 13:42:28 +0100
committerManuel Reimer2021-01-02 13:42:28 +0100
commita27623c8547f6cd23530eb4c731bce490a6bfca7 (patch)
tree0d6e56a42aefea210683a0e423dc39be0e06910b /13_suspendoutput_remove_template_redefine.patch
parent206e6d4a0653b764e335afb42abe9d1ba0a6a139 (diff)
downloadaur-a27623c8547f6cd23530eb4c731bce490a6bfca7.tar.gz
Sync from VDR4Arch (https://github.com/VDR4Arch/vdr4arch/commit/b776b5c2e72570d7a4928edcffb6d0aa313a2f6c)
Diffstat (limited to '13_suspendoutput_remove_template_redefine.patch')
-rw-r--r--13_suspendoutput_remove_template_redefine.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/13_suspendoutput_remove_template_redefine.patch b/13_suspendoutput_remove_template_redefine.patch
deleted file mode 100644
index 1805f2883343..000000000000
--- a/13_suspendoutput_remove_template_redefine.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/timer.h
-+++ b/timer.h
-@@ -242,21 +242,6 @@
- }
-
- template<class TCLASS>
--cTimerEvent *CreateTimerEvent(TCLASS *c, void (TCLASS::*fp)(void),
-- unsigned int TimeoutMs, bool runOnce = true)
--{
-- return new cTimerFunctor0<TCLASS>(c,fp,TimeoutMs,runOnce);
--}
--
--template<class TCLASS, class TARG1>
--cTimerEvent *CreateTimerEvent(TCLASS *c, void (TCLASS::*fp)(TARG1),
-- TARG1 arg1,
-- unsigned int TimeoutMs, bool runOnce = true)
--{
-- return new cTimerFunctor1<TCLASS,TARG1>(c,fp,arg1,TimeoutMs,runOnce);
--}
--
--template<class TCLASS>
- void CancelTimerEvents(TCLASS *c)
- {
- cTimerEvent::CancelAll((void*)c);