mirror of
https://github.com/PixlOne/logiops.git
synced 2025-07-13 21:02:43 +08:00
Add include <algorithm> to fix building with gcc 14
With gcc 14 some C++ Standard Library headers have been changed to no longer include other headers that were being used internally by the library. In logiops's case it is the <algorithm> header. Downstream Gentoo bug: https://bugs.gentoo.org/917002 GCC 14 porting guide: https://gcc.gnu.org/gcc-14/porting_to.html Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
This commit is contained in:
parent
94f6dbab53
commit
da742af3a5
@ -22,6 +22,7 @@
|
||||
#include <type_traits>
|
||||
#include <functional>
|
||||
#include <utility>
|
||||
#include <algorithm>
|
||||
|
||||
namespace logid::config {
|
||||
template<typename T>
|
||||
|
Loading…
Reference in New Issue
Block a user