summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2019-10-11 08:10:26 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2019-10-17 08:03:11 +0100
commit7adf247031f6eae5aa06093376968e8665ebd888 (patch)
treea1c82968d78d5f9b11a2a3897bf348c0b6820110 /numeric.c
parentdd469d97d90432366e531534b23dd30f1f8a07ca (diff)
downloadperl-7adf247031f6eae5aa06093376968e8665ebd888.tar.gz
The VC6 Chainsaw Massacre
Remove MS Visual C++ 6.0 support as agreed in the thread starting here: https://www.nntp.perl.org/group/perl.perl5.porters/2019/07/msg255625.html
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/numeric.c b/numeric.c
index 6f3fd3484a..f5fc1f634a 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1421,10 +1421,6 @@ Perl_my_atof(pTHX_ const char* s)
#if defined(NV_INF) || defined(NV_NAN)
-#ifdef USING_MSVC6
-# pragma warning(push)
-# pragma warning(disable:4756;disable:4056)
-#endif
static char*
S_my_atof_infnan(pTHX_ const char* s, bool negative, const char* send, NV* value)
{
@@ -1502,9 +1498,6 @@ S_my_atof_infnan(pTHX_ const char* s, bool negative, const char* send, NV* value
}
return NULL;
}
-#ifdef USING_MSVC6
-# pragma warning(pop)
-#endif
#endif /* if defined(NV_INF) || defined(NV_NAN) */