]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/compile_test/sf_prime_incl_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / sf_prime_incl_test.cpp
index 6ab7584790543e3310f15665bae94b918fe0c3e1..647a40624ea37acc39db9620b23076d0ebaf7945 100644 (file)
 // important if this test is to be meaningful:
 //
 #include "test_compile_result.hpp"
+#include <cstdint>
 
 void compile_and_link_test()
 {
-   check_result<boost::uint32_t>(boost::math::prime(u));
+   check_result<std::uint32_t>(boost::math::prime(u));
    //
    // Add constexpr tests here:
    //
 #ifdef BOOST_MATH_HAVE_CONSTEXPR_TABLES
-   constexpr boost::uint32_t ce_f = boost::math::prime(boost::math::max_prime);
+   constexpr std::uint32_t ce_f = boost::math::prime(boost::math::max_prime);
    static_assert(ce_f == 104729, "max_prime had incorrect value");
-   check_result<boost::uint32_t>(ce_f);
+   check_result<std::uint32_t>(ce_f);
 #endif
 }