From 9ca8a94e5e90f195aa965cb46b059a09b7f9bbe7 Mon Sep 17 00:00:00 2001 From: Murray Stevenson <50844517+murraystevenson@users.noreply.github.com> Date: Thu, 27 Nov 2025 12:07:35 -0800 Subject: [PATCH 1/3] IECoreGL::Selector : Remove unused includes --- src/IECoreGL/Selector.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/IECoreGL/Selector.cpp b/src/IECoreGL/Selector.cpp index 53dd5d063a..5a2ce33f2c 100644 --- a/src/IECoreGL/Selector.cpp +++ b/src/IECoreGL/Selector.cpp @@ -52,9 +52,6 @@ #include "IECore/Exception.h" #include "IECore/MessageHandler.h" -#include "boost/format.hpp" -#include "boost/timer.hpp" - using namespace IECoreGL; ////////////////////////////////////////////////////////////////////////// From 8dc8cc3c4999413a37c5bebbe28a80db8faefb00 Mon Sep 17 00:00:00 2001 From: Murray Stevenson <50844517+murraystevenson@users.noreply.github.com> Date: Thu, 27 Nov 2025 12:10:41 -0800 Subject: [PATCH 2/3] FileSequenceFunctions : Add include required by Boost 1.85 --- src/IECore/FileSequenceFunctions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IECore/FileSequenceFunctions.cpp b/src/IECore/FileSequenceFunctions.cpp index 51f1d228e7..7de1c809ed 100644 --- a/src/IECore/FileSequenceFunctions.cpp +++ b/src/IECore/FileSequenceFunctions.cpp @@ -43,6 +43,7 @@ #include "boost/algorithm/string.hpp" #include "boost/filesystem/convenience.hpp" +#include "boost/filesystem/directory.hpp" #include "boost/filesystem/operations.hpp" #include "boost/filesystem/path.hpp" #include "boost/format.hpp" From e1da5d6b285ed2cfe747040406361db97627e8b9 Mon Sep 17 00:00:00 2001 From: Murray Stevenson <50844517+murraystevenson@users.noreply.github.com> Date: Thu, 27 Nov 2025 12:11:00 -0800 Subject: [PATCH 3/3] VectorTypedDataBinding : Add include required by Boost 1.85 --- Changes | 3 +++ include/IECorePython/VectorTypedDataBinding.inl | 1 + 2 files changed, 4 insertions(+) diff --git a/Changes b/Changes index 77fdd06a52..dd7b31f313 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ 10.6.x.x (relative to 10.6.2.0) ======== +Fixes +----- +- Boost : Fixed compatibility with Boost 1.85. 10.6.2.0 (relative to 10.6.1.0) ======== diff --git a/include/IECorePython/VectorTypedDataBinding.inl b/include/IECorePython/VectorTypedDataBinding.inl index b26410c744..b8134652ec 100644 --- a/include/IECorePython/VectorTypedDataBinding.inl +++ b/include/IECorePython/VectorTypedDataBinding.inl @@ -40,6 +40,7 @@ #include "IECorePython/IECoreBinding.h" #include "IECorePython/RunTimeTypedBinding.h" +#include "boost/numeric/conversion/cast.hpp" #include "boost/python/suite/indexing/container_utils.hpp" #include