From a93a5d6d2ef3b0f34792d2e72b9a6519de1458f0 Mon Sep 17 00:00:00 2001 From: Chip Hogg Date: Fri, 15 Nov 2024 13:38:48 -0500 Subject: [PATCH] Add `std::` prefix --- src/core/include/mp-units/ext/prime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/include/mp-units/ext/prime.h b/src/core/include/mp-units/ext/prime.h index 61346ce9..1206dc7e 100644 --- a/src/core/include/mp-units/ext/prime.h +++ b/src/core/include/mp-units/ext/prime.h @@ -382,7 +382,7 @@ struct LucasSequenceElement { // The Baillie-PSW test is technically a "probable prime" test. However, it is known to be correct for all // 64-bit integers, and no counterexample of any size has ever been found. Thus, for this library's purposes, // we can treat it as deterministic... probably. -[[nodiscard]] consteval bool baillie_psw_probable_prime(uint64_t n) +[[nodiscard]] consteval bool baillie_psw_probable_prime(std::uint64_t n) { if (n < 2u) { return false;