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 0b5b947 commit 0800c68Copy full SHA for 0800c68
ext/gmp/gmp.c
@@ -1303,7 +1303,7 @@ ZEND_FUNCTION(gmp_perfect_square)
1303
GMP_Z_PARAM_INTO_MPZ_PTR(gmpnum_a)
1304
ZEND_PARSE_PARAMETERS_END();
1305
1306
- RETURN_BOOL((mpz_perfect_square_p(gmpnum_a) != 0));
+ RETURN_BOOL(mpz_perfect_square_p(gmpnum_a) != 0);
1307
}
1308
/* }}} */
1309
@@ -1316,7 +1316,7 @@ ZEND_FUNCTION(gmp_perfect_power)
1316
1317
1318
1319
- RETURN_BOOL((mpz_perfect_power_p(gmpnum_a) != 0));
+ RETURN_BOOL(mpz_perfect_power_p(gmpnum_a) != 0);
1320
1321
1322
0 commit comments