mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-27 03:17:54 +02:00
Added support for int128 to counting_iterator.
This commit is contained in:
@ -271,8 +271,12 @@ int main()
|
||||
test_integer<long>();
|
||||
test_integer<unsigned long>();
|
||||
#if defined(BOOST_HAS_LONG_LONG)
|
||||
test_integer< ::boost::long_long_type>();
|
||||
test_integer< ::boost::ulong_long_type>();
|
||||
test_integer<boost::long_long_type>();
|
||||
test_integer<boost::ulong_long_type>();
|
||||
#endif
|
||||
#if defined(BOOST_HAS_INT128)
|
||||
test_integer<boost::int128_type>();
|
||||
test_integer<boost::uint128_type>();
|
||||
#endif
|
||||
|
||||
// Test user-defined type.
|
||||
|
Reference in New Issue
Block a user