[geos-commits] [SCM] GEOS branch 3.11 updated. ad62ddf5d97beecc193756c99f6c076963d36536

git at osgeo.org git at osgeo.org
Thu Jun 15 09:14:04 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.11 has been updated
       via  ad62ddf5d97beecc193756c99f6c076963d36536 (commit)
      from  c42e663523b9eb6aa8f149f23cc7659697f5fbbb (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 ad62ddf5d97beecc193756c99f6c076963d36536
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.11 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