Skip to content

Commit 620aaa8

Browse files
authored
fix: wrong condition
1 parent 8091e48 commit 620aaa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/utils/MPFRWrapper/MPCommon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ MPFRNumber MPFRNumber::asinh() const {
107107

108108
MPFRNumber MPFRNumber::asinpi() const {
109109
MPFRNumber result(*this);
110-
#if 0 && (MPFR_VERSION >= MPFR_VERSION_NUM(4, 2, 0))
110+
#if (MPFR_VERSION >= MPFR_VERSION_NUM(4, 2, 0))
111111
mpfr_asinpi(result.value, value, mpfr_rounding);
112112
return result;
113113
#else

0 commit comments

Comments
 (0)