From 40aaddc7eb4ca12a03b64e18ffc101db9f9c24ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Sture?= Date: Fri, 24 May 2024 19:15:34 -0300 Subject: [PATCH] Add missing algorithm include (#2414) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Needed due to use of std::find_if. Signed-off-by: Øystein Sture --- include/gz/sim/components/Factory.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/include/gz/sim/components/Factory.hh b/include/gz/sim/components/Factory.hh index 393c770a9d..5f27a130bd 100644 --- a/include/gz/sim/components/Factory.hh +++ b/include/gz/sim/components/Factory.hh @@ -17,6 +17,7 @@ #ifndef GZ_SIM_COMPONENTS_FACTORY_HH_ #define GZ_SIM_COMPONENTS_FACTORY_HH_ +#include #include #include #include