aboutsummaryrefslogtreecommitdiff
path: root/test/unit/test_datum.cpp
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-02-15 15:41:06 +0100
committerGitHub <noreply@github.com>2019-02-15 15:41:06 +0100
commit7df282be9512b5a62aac08697e046fe9d459c8ad (patch)
tree6774870a9d1d895aa9766cef1f2f1708731cedcb /test/unit/test_datum.cpp
parenta813ad65cfb819bfa295dfbacdf577b258377c93 (diff)
parentac5231f44aab2391bac0ce3b77e9ed27357d59a9 (diff)
downloadPROJ-7df282be9512b5a62aac08697e046fe9d459c8ad.tar.gz
PROJ-7df282be9512b5a62aac08697e046fe9d459c8ad.zip
Merge pull request #1265 from dg0yt/gtest-mingw
Fix issues with Gtest and MinGW
Diffstat (limited to 'test/unit/test_datum.cpp')
-rw-r--r--test/unit/test_datum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_datum.cpp b/test/unit/test_datum.cpp
index c6ccf5cf..23c14f67 100644
--- a/test/unit/test_datum.cpp
+++ b/test/unit/test_datum.cpp
@@ -370,7 +370,7 @@ TEST(datum, datum_ensemble) {
PropertyMap().set(IdentifiedObject::NAME_KEY, "test"),
std::vector<DatumNNPtr>{GeodeticReferenceFrame::EPSG_6326, otherDatum},
PositionalAccuracy::create("100"));
- EXPECT_EQ(ensemble->datums().size(), 2);
+ EXPECT_EQ(ensemble->datums().size(), 2U);
EXPECT_EQ(ensemble->positionalAccuracy()->value(), "100");
EXPECT_THROW(ensemble->exportToWKT(WKTFormatter::create().get()),
FormattingException);