[geos-commits] [SCM] GEOS branch 3.10 updated. aad507317fee68dbd85ae1c0c4f632a603ae67b8

git at osgeo.org git at osgeo.org
Thu Jun 15 09:13:56 PDT 2023


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.10 has been updated
       via  aad507317fee68dbd85ae1c0c4f632a603ae67b8 (commit)
      from  972e0ac3cc5d9ad8cbbd85a96458f8b104f9bfaf (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 aad507317fee68dbd85ae1c0c4f632a603ae67b8
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jun 15 16:49:46 2023 +0200

    Do not hide illegal argument exception in HeuristicOverlay
    
    The change was accidentally introduced via commit c4aebbbc0
    References GH-925 in 3.10 branch

diff --git a/src/geom/HeuristicOverlay.cpp b/src/geom/HeuristicOverlay.cpp
index 8a2060079..c5cbbff01 100644
--- a/src/geom/HeuristicOverlay.cpp
+++ b/src/geom/HeuristicOverlay.cpp
@@ -421,7 +421,7 @@ HeuristicOverlay(const Geometry* g0, const Geometry* g1, int opCode)
 
         return ret;
     }
-    catch(const std::exception& ex) {
+    catch(const geos::util::TopologyException& ex) {
         ::geos::ignore_unused_variable_warning(ex);
 
 #if GEOS_DEBUG_HEURISTICOVERLAY

-----------------------------------------------------------------------

Summary of changes:
 src/geom/HeuristicOverlay.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list