diff --git a/subproject/test/source/verify_compressed_cache.cpp b/subproject/test/source/verify_compressed_cache.cpp index 3c31fc6..0293eb1 100644 --- a/subproject/test/source/verify_compressed_cache.cpp +++ b/subproject/test/source/verify_compressed_cache.cpp @@ -62,7 +62,7 @@ bool verify_compressed_cache(GetCache&& get_cache, ConvertToBigUInt&& convert_to e <= format::max_exponent - format::significand_bits; ++e) { int const k = impl::kappa - jkj::dragonbox::detail::log::floor_log10_pow2(e); - auto const real_cache = jkj::dragonbox::policy::cache::full.get_cache(k); + auto const real_cache = jkj::dragonbox::policy::cache::full.get_cache(k); auto const recovered_cache = get_cache(k); if (!recovered_cache.success) { @@ -141,7 +141,7 @@ int main() { jkj::dragonbox::ieee754_binary32, std::uint_least32_t>>( [](int k) { return recovered_cache_t{ - cache_holder_type::get_cache(k), true}; + cache_holder_type::get_cache(k), true}; }, [](cache_holder_type::cache_entry_type value) { return jkj::big_uint{value}; }, 7)) { std::cout << "Verification succeeded. No error detected.\n\n"; diff --git a/subproject/test/source/verify_fast_multiplication.cpp b/subproject/test/source/verify_fast_multiplication.cpp index d8680a3..e617e45 100644 --- a/subproject/test/source/verify_fast_multiplication.cpp +++ b/subproject/test/source/verify_fast_multiplication.cpp @@ -48,7 +48,7 @@ static bool verify_fast_multiplication_xz(CachePolicy&& cache_policy) { int const beta = e + floor_log2_pow10(k); // Load cache. - auto const cache = cache_policy.template get_cache(k); + auto const cache = cache_policy.template get_cache(k); // Compute the endpoints using the fast method. auto x_fast = @@ -106,7 +106,7 @@ static bool verify_fast_multiplication_yru(CachePolicy&& cache_policy) { bool success = true; for (int k = impl::min_k; k <= impl::max_k; ++k) { - auto const cache = cache_policy.template get_cache(k); + auto const cache = cache_policy.template get_cache(k); // Since Q - p - beta - 2 >= q, it suffices to check that the lower half of the cache is not // 0.