..hmm, das ist schade.
vdr-2.4.6 kompiliert mit gcc-11.0.0 nicht
-
-
Mit 11.1 auch nicht 😒
-
Mit 11.1 auch nicht 😒
kls: könntest du dein git mal bitte aktualisieren?
hjs:
tools.h:
Code
Display More--// 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) --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 ++#if (__cplusplus < 201103L) ++ /* pre C++11 */ ++ 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; } ++ template<class T> inline void swap(T &a, T &b) { T t = a; a = b; b = t; } ++#else ++ #include <utility> ++ using std::max; ++ using std::min; ++ using std::swap; ++#endif ++ ++template<class T> inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; }
-
vor #include <utility> gehört noch ein #include <algorithm>
-
könntest du dein git mal bitte aktualisieren?
Hatte ich eh heute vor ;-).
-
Danke
Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!