[geos-commits] [SCM] GEOS branch master updated. bb238d0f23ac7b4f030b03921bfd1e5ddd16d05e

git at osgeo.org git at osgeo.org
Thu Sep 12 08:21:35 PDT 2019


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, master has been updated
       via  bb238d0f23ac7b4f030b03921bfd1e5ddd16d05e (commit)
       via  b70b1508ccd734cc00de4dda85c3604cfd761aa8 (commit)
      from  a453c27a1b428d95722da8f5793cb55567099f7a (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 bb238d0f23ac7b4f030b03921bfd1e5ddd16d05e
Author: Daniel Baston <dbaston at gmail.com>
Date:   Thu Sep 12 11:21:03 2019 -0400

    Add include to IsSimpleOpTest.cpp
    
    Attempts to fix error with Winnie build.

diff --git a/tests/unit/operation/IsSimpleOpTest.cpp b/tests/unit/operation/IsSimpleOpTest.cpp
index d4a8d59..38da4ff 100644
--- a/tests/unit/operation/IsSimpleOpTest.cpp
+++ b/tests/unit/operation/IsSimpleOpTest.cpp
@@ -12,6 +12,8 @@
 #include <geos/geom/PrecisionModel.h>
 #include <geos/io/WKTReader.h>
 #include <geos/io/WKBReader.h>
+#include <geos/util/GEOSException.h>
+
 // std
 #include <string>
 #include <sstream>

commit b70b1508ccd734cc00de4dda85c3604cfd761aa8
Author: Daniel Baston <dbaston at gmail.com>
Date:   Thu Sep 12 11:20:50 2019 -0400

    Clear -Wsuggest-override warnings

diff --git a/include/geos/geom/FixedSizeCoordinateSequence.h b/include/geos/geom/FixedSizeCoordinateSequence.h
index add43da..07612ea 100644
--- a/include/geos/geom/FixedSizeCoordinateSequence.h
+++ b/include/geos/geom/FixedSizeCoordinateSequence.h
@@ -60,7 +60,7 @@ namespace geom {
             m_data[pos] = c;
         }
 
-        void setOrdinate(size_t index, size_t ordinateIndex, double value)
+        void setOrdinate(size_t index, size_t ordinateIndex, double value) final
         {
             switch(ordinateIndex) {
                 case CoordinateSequence::X:
@@ -100,7 +100,7 @@ namespace geom {
             return dimension;
         }
 
-        void toVector(std::vector<Coordinate> & out) const {
+        void toVector(std::vector<Coordinate> & out) const final {
             out.insert(out.end(), m_data.begin(), m_data.end());
         }
 

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

Summary of changes:
 include/geos/geom/FixedSizeCoordinateSequence.h | 4 ++--
 tests/unit/operation/IsSimpleOpTest.cpp         | 2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list