Skip to content

Commit d74c13c

Browse files
committed
perl.h: Fix rarely compiled syntax errors
This #ifdef'd code clearly doesn't get compiled, as it would fail.
1 parent d5a15a1 commit d74c13c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

perl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2556,8 +2556,8 @@ extern long double Perl_my_frexpl(long double x, int *e);
25562556
# define Perl_fp_class_snan(x) (_fpclass(x) & _FPCLASS_SNAN)
25572557
# define Perl_fp_class_qnan(x) (_fpclass(x) & _FPCLASS_QNAN)
25582558
# define Perl_fp_class_nan(x) (_fpclass(x) & (_FPCLASS_SNAN|_FPCLASS_QNAN))
2559-
# define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF))
2560-
# define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF))
2559+
# define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF)
2560+
# define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF)
25612561
# define Perl_fp_class_inf(x) (_fpclass(x) & (_FPCLASS_NINF|_FPCLASS_PINF))
25622562
# define Perl_fp_class_nnorm(x) (_fpclass(x) & _FPCLASS_NN)
25632563
# define Perl_fp_class_pnorm(x) (_fpclass(x) & _FPCLASS_PN)

0 commit comments

Comments
 (0)