diff --git a/doc/history.qbk b/doc/history.qbk
index 1e63c01..979a48b 100644
--- a/doc/history.qbk
+++ b/doc/history.qbk
@@ -13,6 +13,7 @@ http://www.boost.org/LICENSE_1_0.txt)
category (from Charly Chevalier).
* Add compile only version of check utilities to address cross-compile
use cases. And changed the BBv2 check support to use compile only checks.
+* Fix test warnings.
[heading 1.3]
diff --git a/doc/html/index.html b/doc/html/index.html
index 322d814..c48812f 100644
--- a/doc/html/index.html
+++ b/doc/html/index.html
@@ -57,7 +57,7 @@
-Last revised: August 07, 2015 at 01:42:50 GMT |
+Last revised: August 27, 2015 at 15:17:44 GMT |
|
diff --git a/doc/html/predef/history.html b/doc/html/predef/history.html
index a5cbb68..43f1ad1 100644
--- a/doc/html/predef/history.html
+++ b/doc/html/predef/history.html
@@ -30,6 +30,9 @@
Add compile only version of check utilities to address cross-compile use
cases. And changed the BBv2 check support to use compile only checks.
+
+ Fix test warnings.
+
diff --git a/test/version.cpp b/test/version.cpp
index c2df3b9..e86834c 100644
--- a/test/version.cpp
+++ b/test/version.cpp
@@ -30,7 +30,7 @@ void test_BOOST_VERSION_NUMBER()
{
PREDEF_CHECK(BOOST_VERSION_NUMBER(0,0,1) == 1L);
PREDEF_CHECK(BOOST_VERSION_NUMBER(99,99,99999) == 999999999L);
- PREDEF_CHECK(BOOST_VERSION_NUMBER(299,99,99999) != 2999999999L);
+ PREDEF_CHECK(BOOST_VERSION_NUMBER(299UL,99UL,99999UL) != 2999999999UL);
PREDEF_CHECK(BOOST_VERSION_NUMBER(100,99,99999) != 1009999999L);
PREDEF_CHECK(BOOST_VERSION_NUMBER(100,99,99999) == 9999999L);
PREDEF_CHECK(BOOST_VERSION_NUMBER(100,100,100000) == 0L);