From b931caef6ad176f1302d29827986fce45bbbbc80 Mon Sep 17 00:00:00 2001 From: "Joshua F. Robinson" Date: Mon, 8 Jul 2024 18:44:40 +0100 Subject: [PATCH] Include std algorithm to prevent pybind11 compile errors on gcc 14 (cf. https://github.com/pybind/pybind11/pull/5208) --- src/integrator.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/integrator.cc b/src/integrator.cc index 49b91f7..df460f0 100644 --- a/src/integrator.cc +++ b/src/integrator.cc @@ -1,3 +1,4 @@ +#include #include #include #include "integrator.h"