// Copyright (c) 2025 The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef LIMENKA_TEST_UTIL_BOOST_NO_PRINT_INT128_H #define LIMENKA_TEST_UTIL_BOOST_NO_PRINT_INT128_H // CAmount is __int128. Boost.Test's print_log_value cannot resolve an // operator<< for it (builtin type - no ADL), so suppress printing to keep // BOOST_CHECK_EQUAL usable with CAmount values. #include BOOST_TEST_DONT_PRINT_LOG_VALUE(__int128); BOOST_TEST_DONT_PRINT_LOG_VALUE(unsigned __int128); #endif // LIMENKA_TEST_UTIL_BOOST_NO_PRINT_INT128_H