Skip to content

Commit

Permalink
Add std:: prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
chiphogg committed Nov 15, 2024
1 parent de68b3a commit a93a5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/include/mp-units/ext/prime.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a93a5d6

Please sign in to comment.