change to trigger CI

This commit is contained in:
Edward Hartnett 2022-04-27 09:52:00 -06:00
parent 01bbc0471d
commit 5982b1c5ef

View File

@ -382,6 +382,7 @@ NC_hashmapdeactivate(NC_hashmap* map, uintptr_t data)
static int isPrime(size_t n)
{
size_t i;
if (n <= 1) return 0;
if (n <= 3) return 1;