summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2021-05-19 11:50:24 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2021-05-19 11:50:24 +0200
commit54c4e69299b9c818c768e398d171d67cbd4fdea3 (patch)
treeb4f3f8e59a2f1452f8bf902e39b4197008db0e5f
parent31b87544f1ca5580ad96d080e5b93793775b4fdb (diff)
downloadvdr-54c4e69299b9c818c768e398d171d67cbd4fdea3.tar.gz
vdr-54c4e69299b9c818c768e398d171d67cbd4fdea3.tar.bz2
Removed the macros __STL_CONFIG_H, _STL_ALGOBASE_H and _MOVE_H from tools.h
-rw-r--r--HISTORY3
-rw-r--r--tools.h12
2 files changed, 7 insertions, 8 deletions
diff --git a/HISTORY b/HISTORY
index 90af6958..52e304f1 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9679,3 +9679,6 @@ Video Disk Recorder Revision History
+ Spawned timers that shall avoid recording reruns only store the recording's name in
the donerecs,data file if there were no errors during recording, and if the timer has
actually finished.
+- Removed the macros __STL_CONFIG_H, _STL_ALGOBASE_H and _MOVE_H from tools.h. If your
+ plugin insists in using "using namespace std;" you can still define
+ DISABLE_TEMPLATES_COLLIDING_WITH_STL before including any VDR header files.
diff --git a/tools.h b/tools.h
index 5a77813a..4e88a059 100644
--- a/tools.h
+++ b/tools.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.h 5.3 2021/01/19 20:38:28 kls Exp $
+ * $Id: tools.h 5.4 2021/05/19 11:50:24 kls Exp $
*/
#ifndef __TOOLS_H
@@ -53,17 +53,13 @@ template<class T> inline void DELETENULL(T *&p) { T *q = p; p = NULL; delete q;
// In case some plugin needs to use the STL and gets an error message regarding one
// of these functions, you can #define DISABLE_TEMPLATES_COLLIDING_WITH_STL before
-// including tools.h.
-#if !defined(__STL_CONFIG_H) // for old versions of the STL
-#if !defined(DISABLE_TEMPLATES_COLLIDING_WITH_STL) && !defined(_STL_ALGOBASE_H)
+// including any VDR header files.
+#if !defined(DISABLE_TEMPLATES_COLLIDING_WITH_STL)
template<class T> inline T min(T a, T b) { return a <= b ? a : b; }
template<class T> inline T max(T a, T b) { return a >= b ? a : b; }
-#endif
-template<class T> inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; }
-#if !defined(DISABLE_TEMPLATES_COLLIDING_WITH_STL) && !defined(_MOVE_H)
template<class T> inline void swap(T &a, T &b) { T t = a; a = b; b = t; }
#endif
-#endif
+template<class T> inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; }
template<class T> inline T constrain(T v, T l, T h) { return v < l ? l : v > h ? h : v; }