[geos-commits] [SCM] GEOS branch svn-3.6 updated. b0f3f66c73ee2607daedbe386363a3efc80c0186

git at osgeo.org git at osgeo.org
Tue Jul 31 04:07:33 PDT 2018


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, svn-3.6 has been updated
       via  b0f3f66c73ee2607daedbe386363a3efc80c0186 (commit)
      from  bcf347af99abc0f2c5064db9cb5b1e2e2ee4bebd (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 b0f3f66c73ee2607daedbe386363a3efc80c0186
Author: Daniel Baston <dbaston at gmail.com>
Date:   Tue Jul 31 07:07:11 2018 -0400

    Avoid use of C++11 initialization braces

diff --git a/tests/unit/operation/intersection/RectangleIntersectionTest.cpp b/tests/unit/operation/intersection/RectangleIntersectionTest.cpp
index 24b7168..fbb9751 100644
--- a/tests/unit/operation/intersection/RectangleIntersectionTest.cpp
+++ b/tests/unit/operation/intersection/RectangleIntersectionTest.cpp
@@ -1,4 +1,4 @@
-// 
+//
 // Test Suite for geos::operation::intersection::RectangleIntersection class.
 
 // tut
@@ -1523,7 +1523,7 @@ namespace tut
       const char *inp =
         "POLYGON((3.0481343214686657e-14 -20000000, 3.0481343214686657e-14 -1, 1.570795680861262382313481289e-3 -0.999998766299703523152686557296, 3.141587485909849188081555127e-3 -0.999995065201858102099663483386, 3.0481343214686657e-14 -20000000))";
 
-      GeomPtr isect{readWKT(clip)->intersection(readWKT(inp).get())};
+      GeomPtr isect(readWKT(clip)->intersection(readWKT(inp).get()));
       std::string exp = wktwriter.write(isect.get());
 
       doClipTest(inp, exp, r, 1e-20);

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

Summary of changes:
 tests/unit/operation/intersection/RectangleIntersectionTest.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list