From: David Wells Date: Tue, 27 May 2025 15:10:55 +0000 (-0400) Subject: BoundingBox: make things work without an extra boost header. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97c30f28cc490328b2b1f4422fbcf37360341080;p=dealii.git BoundingBox: make things work without an extra boost header. This is also about 5% faster. --- diff --git a/include/deal.II/base/bounding_box.h b/include/deal.II/base/bounding_box.h index ed83a1f169..e5d95e4774 100644 --- a/include/deal.II/base/bounding_box.h +++ b/include/deal.II/base/bounding_box.h @@ -618,7 +618,10 @@ void BoundingBox::serialize(Archive &ar, const unsigned int /*version*/) { - ar &boundary_points; + // Avoid including boost/serialization/utility.hpp by unpacking the pair + // ourselves + ar &boundary_points.first; + ar &boundary_points.second; }