summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-10-17 15:52:12 -0600
committerKarl Williamson <khw@cpan.org>2020-10-22 08:54:05 -0600
commitd74c13c00e382643290158595bfba6867da8c199 (patch)
tree979efa9e319f2107147960b7f95ac8fe18044388 /perl.h
parentd5a15a1445bf8693187463204b3962f44f6ff769 (diff)
downloadperl-d74c13c00e382643290158595bfba6867da8c199.tar.gz
perl.h: Fix rarely compiled syntax errors
This #ifdef'd code clearly doesn't get compiled, as it would fail.
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 5dce737c98..c8316361de 100644
--- a/perl.h
+++ b/perl.h
@@ -2556,8 +2556,8 @@ extern long double Perl_my_frexpl(long double x, int *e);
# define Perl_fp_class_snan(x) (_fpclass(x) & _FPCLASS_SNAN)
# define Perl_fp_class_qnan(x) (_fpclass(x) & _FPCLASS_QNAN)
# define Perl_fp_class_nan(x) (_fpclass(x) & (_FPCLASS_SNAN|_FPCLASS_QNAN))
-# define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF))
-# define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF))
+# define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF)
+# define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF)
# define Perl_fp_class_inf(x) (_fpclass(x) & (_FPCLASS_NINF|_FPCLASS_PINF))
# define Perl_fp_class_nnorm(x) (_fpclass(x) & _FPCLASS_NN)
# define Perl_fp_class_pnorm(x) (_fpclass(x) & _FPCLASS_PN)