// Copyright 2023 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include void test_odr_use( int const* ); template void test() { test_odr_use( &boost::charconv::limits::max_chars10 ); test_odr_use( &boost::charconv::limits::max_chars ); } void f2() { test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); test(); #ifndef BOOST_CHARCONV_UNSUPPORTED_LONG_DOUBLE test(); #endif #ifdef BOOST_CHARCONV_HAS_INT128 test(); test(); #endif }