[geos-commits] [SCM] GEOS branch main updated. d3b22f1393eb31279647b1fe2aadc1e804a15fe2
git at osgeo.org
git at osgeo.org
Tue Jul 2 07:40:45 PDT 2024
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".
The branch, main has been updated
via d3b22f1393eb31279647b1fe2aadc1e804a15fe2 (commit)
from 3db005a65baf5fb53a3d2078c30dd7d365115b5e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d3b22f1393eb31279647b1fe2aadc1e804a15fe2
Author: gorloffslava <31761951+gorloffslava at users.noreply.github.com>
Date: Tue Jul 2 19:40:08 2024 +0500
fix building in C++23 language mode (#1122)
Thanks to @BwL1289
diff --git a/include/geos/constants.h b/include/geos/constants.h
index 7d58ca3d5..3781bccbf 100644
--- a/include/geos/constants.h
+++ b/include/geos/constants.h
@@ -29,6 +29,7 @@ typedef __int64 int64;
#include <cmath>
#include <limits>
#include <cinttypes>
+#include <cstddef> // for std::size_t
namespace geos {
diff --git a/include/geos/coverage/CoverageRingEdges.h b/include/geos/coverage/CoverageRingEdges.h
index d6014c2d3..ec2809852 100644
--- a/include/geos/coverage/CoverageRingEdges.h
+++ b/include/geos/coverage/CoverageRingEdges.h
@@ -17,6 +17,7 @@
#include <geos/geom/Coordinate.h>
#include <geos/geom/LineSegment.h>
+#include <geos/coverage/CoverageEdge.h> // to materialize CoverageEdge
#include <set>
#include <map>
diff --git a/include/geos/geom/Geometry.h b/include/geos/geom/Geometry.h
index 3661bf886..114f4c039 100644
--- a/include/geos/geom/Geometry.h
+++ b/include/geos/geom/Geometry.h
@@ -34,6 +34,7 @@
#include <geos/geom/Envelope.h>
#include <geos/geom/Dimension.h> // for Dimension::DimensionType
#include <geos/geom/GeometryComponentFilter.h> // for inheritance
+#include <geos/geom/CoordinateSequence.h> // to materialize CoordinateSequence
#include <algorithm>
#include <string>
diff --git a/include/geos/operation/buffer/BufferOp.h b/include/geos/operation/buffer/BufferOp.h
index 9d2b18a1b..6339ca895 100644
--- a/include/geos/operation/buffer/BufferOp.h
+++ b/include/geos/operation/buffer/BufferOp.h
@@ -25,6 +25,7 @@
#include <geos/export.h>
#include <geos/operation/buffer/BufferParameters.h> // for enum values
+#include <geos/geom/Geometry.h> // to materialize Geometry
#include <geos/util/TopologyException.h> // for composition
diff --git a/include/geos/operation/buffer/OffsetCurveSection.h b/include/geos/operation/buffer/OffsetCurveSection.h
index fe8d9035e..e73d759ce 100644
--- a/include/geos/operation/buffer/OffsetCurveSection.h
+++ b/include/geos/operation/buffer/OffsetCurveSection.h
@@ -16,6 +16,7 @@
#pragma once
#include <geos/export.h>
+#include <geos/geom/CoordinateSequence.h> // to materialize CoordinateSequence
#include <memory>
#include <vector>
-----------------------------------------------------------------------
Summary of changes:
include/geos/constants.h | 1 +
include/geos/coverage/CoverageRingEdges.h | 1 +
include/geos/geom/Geometry.h | 1 +
include/geos/operation/buffer/BufferOp.h | 1 +
include/geos/operation/buffer/OffsetCurveSection.h | 1 +
5 files changed, 5 insertions(+)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list