We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d780c79 commit 0e3ad3fCopy full SHA for 0e3ad3f
demo/test.c
@@ -1573,6 +1573,10 @@ static int test_mp_is_small_prime(void)
1573
}
1574
1575
1576
+#ifdef _MSC_VER
1577
+#pragma warning(push)
1578
+#pragma warning(disable: 4389) /* '!=': signed/unsigned mismatch */
1579
+#endif
1580
1581
static int test_mp_next_small_prime(void)
1582
{
@@ -1647,6 +1651,10 @@ static int test_mp_next_small_prime(void)
1647
1651
return EXIT_FAILURE;
1648
1652
1649
1653
1654
1655
+#pragma warning(pop)
1656
1657
+
1650
1658
static int test_mp_prec_small_prime(void)
1659
1660
mp_sieve sieve;
0 commit comments