[geos-commits] [SCM] GEOS branch 3.13 updated. c80bdc7d3afd7b20ee178a9be256038658ba9d20
git at osgeo.org
git at osgeo.org
Sat Oct 5 09:08:35 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, 3.13 has been updated
via c80bdc7d3afd7b20ee178a9be256038658ba9d20 (commit)
via 7656fdc431ce474a7c844f663bd1da3db2d56eaa (commit)
from 28ff70b0e4bc835e4598e77a79a5fb9b46367f8b (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 c80bdc7d3afd7b20ee178a9be256038658ba9d20
Author: psharma-gdal <69621224+psharma-gdal at users.noreply.github.com>
Date: Sun Oct 6 00:07:08 2024 +0800
Update TopologyPredicate.h to include <string> header (#1174)
While building in Visual Studio for msvc141 we get build error "C2679: binary '<<': no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion)"
diff --git a/include/geos/operation/relateng/TopologyPredicate.h b/include/geos/operation/relateng/TopologyPredicate.h
index fdf94bb51..52ec524d8 100644
--- a/include/geos/operation/relateng/TopologyPredicate.h
+++ b/include/geos/operation/relateng/TopologyPredicate.h
@@ -19,6 +19,7 @@
#include <geos/export.h>
#include <ostream> // for operator<<
+#include <string>
// Forward declarations
namespace geos {
commit 7656fdc431ce474a7c844f663bd1da3db2d56eaa
Author: Even Rouault <even.rouault at spatialys.com>
Date: Thu Oct 3 21:21:53 2024 +0200
TopologyPredicate.h: add missing ostream inclusion (#1173)
Fixes #1172
diff --git a/include/geos/operation/relateng/TopologyPredicate.h b/include/geos/operation/relateng/TopologyPredicate.h
index 6b594dbca..fdf94bb51 100644
--- a/include/geos/operation/relateng/TopologyPredicate.h
+++ b/include/geos/operation/relateng/TopologyPredicate.h
@@ -18,6 +18,7 @@
#include <geos/geom/Location.h>
#include <geos/export.h>
+#include <ostream> // for operator<<
// Forward declarations
namespace geos {
-----------------------------------------------------------------------
Summary of changes:
include/geos/operation/relateng/TopologyPredicate.h | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list