[geos-commits] [SCM] GEOS branch master updated. 9066456df82036cdd5f88b3b0136a667fb6d0279
git at osgeo.org
git at osgeo.org
Thu Sep 19 01:15:34 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 9066456df82036cdd5f88b3b0136a667fb6d0279 (commit)
from 0f18d225d0abfead26e505c34638b1136bb97bd4 (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 9066456df82036cdd5f88b3b0136a667fb6d0279
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Sep 19 10:15:23 2019 +0200
Fix signed==unsigned compiler warning
diff --git a/tests/unit/precision/CommonBitsTest.cpp b/tests/unit/precision/CommonBitsTest.cpp
index 068627f..1c06182 100644
--- a/tests/unit/precision/CommonBitsTest.cpp
+++ b/tests/unit/precision/CommonBitsTest.cpp
@@ -59,7 +59,7 @@ template<>
void object::test<4>()
{
constexpr int64 val = static_cast<int64>(0xffffffffffffffffull);
- ensure_equals(sizeof(val), 8);
+ ensure_equals(sizeof(val), 8u);
ensure_equals(CommonBits::zeroLowerBits(val, -1), 0);
ensure_equals(CommonBits::zeroLowerBits(val, 0), -1);
-----------------------------------------------------------------------
Summary of changes:
tests/unit/precision/CommonBitsTest.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list