[geos-commits] [SCM] GEOS branch svn-3.5 updated. 6710c595247312ad7c226ac3e026e303d477f207
git at osgeo.org
git at osgeo.org
Tue Jul 31 05:00:27 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.5 has been updated
via 6710c595247312ad7c226ac3e026e303d477f207 (commit)
from 82a83a8f6b6df317d9f5c12f3d9d8a9373d9f95e (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 6710c595247312ad7c226ac3e026e303d477f207
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 a4c7ee2..59864fc 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
@@ -1526,7 +1526,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