Skip to content

Commit 18a9f76

Browse files
committed
revert
1 parent 731b3a8 commit 18a9f76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/CppCore/Math/Primes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ namespace CppCore
217217
if (n == x) return 1U; // n is a precomuted prime
218218
if (n % x == 0U) return 0U; // precomputed prime is factor of n
219219
}
220-
return (n < (size_t)13490929U) ? 1U : x; // covered by trial above (3673*3673=13490929)
220+
return (n < 13490929U) ? 1U : x; // covered by trial above (3673*3673=13490929)
221221
}
222222

223223
///////////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)