fix integral constant definition issue

[SVN r18240]
This commit is contained in:
Aleksey Gurtovoy
2003-04-12 18:25:44 +00:00
parent e4c699664e
commit 3bdab8a641
3 changed files with 26 additions and 15 deletions
+14 -13
View File
@@ -1,9 +1,8 @@
//-----------------------------------------------------------------------------
// boost mpl/test/int.cpp source file
// See http://www.boost.org for updates, documentation, and revision history.
//-----------------------------------------------------------------------------
//
// Copyright (c) 2001-02
// + file: libs/mpl/int.cpp
// + last modified: 12/apr/03
// Copyright (c) 2001-03
// Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
@@ -13,6 +12,8 @@
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
#include "boost/mpl/int.hpp"
#include "boost/mpl/assert_is_same.hpp"
@@ -23,13 +24,13 @@
namespace mpl = boost::mpl;
#define INT_C_TEST(z, i, unused) \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::value_type, int); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::type, mpl::int_<i>); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::next, mpl::int_<i+1>); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::prior, mpl::int_<i-1>); } \
{ BOOST_STATIC_ASSERT(mpl::int_<i>::value == i); } \
assert(mpl::int_<i>() == i);
#define INT_C_TEST(unused1, i, unused2) \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::value_type, int); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::type, mpl::int_<i>); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::next, mpl::int_<i+1>); } \
{ BOOST_MPL_ASSERT_IS_SAME(mpl::int_<i>::prior, mpl::int_<i-1>); } \
{ BOOST_STATIC_ASSERT(mpl::int_<i>::value == i); } \
assert(mpl::int_<i>() == i); \
/**/
int main()