Skip to content

Commit f7880fe

Browse files
committed
Add standalone test
1 parent 0f3d87b commit f7880fe

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

test/Jamfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,4 @@ compile compile_tests/iostream_compile.cpp ;
188188
compile compile_tests/literals_compile.cpp ;
189189
compile compile_tests/numbers_compile.cpp ;
190190
compile compile_tests/string_compile.cpp ;
191+
compile compile_tests/uint128.cpp ;

test/compile_tests/uint128.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright 2025 Matt Borland
2+
// Distributed under the Boost Software License, Version 1.0.
3+
// https://www.boost.org/LICENSE_1_0.txt
4+
5+
#include <boost/decimal/bid_conversion.hpp>
6+
7+
int main()
8+
{
9+
return 0;
10+
}

test/test_big_uints.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,7 @@ int main()
497497

498498
test_digit_counting<boost::decimal::detail::uint128>();
499499
test_digit_counting<boost::decimal::detail::uint256_t>();
500+
test_digit_counting<boost::decimal::uint128>();
500501

501502
return boost::report_errors();
502503
}

0 commit comments

Comments
 (0)