From a234fc8f31d94adfc2a55458f51e034e4c18d819 Mon Sep 17 00:00:00 2001 From: Bernd Pfrommer Date: Wed, 25 Jan 2023 14:03:17 +0000 Subject: [PATCH] fix boost 1.74 error by including library_version_type.hpp --- gtsam/base/FastList.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtsam/base/FastList.h b/gtsam/base/FastList.h index d7c2dd6f4..2b0b9945b 100644 --- a/gtsam/base/FastList.h +++ b/gtsam/base/FastList.h @@ -24,6 +24,9 @@ #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION #include #include +#if BOOST_VERSION >= 107400 +#include +#endif #include #endif