summaryrefslogtreecommitdiff
path: root/sv.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 /sv.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 'sv.c')
-rw-r--r--sv.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sv.c b/sv.c
index 0b878a4630..4bd42b435a 100644
--- a/sv.c
+++ b/sv.c
@@ -2086,10 +2086,6 @@ S_sv_2iuv_non_preserve(pTHX_ SV *const sv
/* If numtype is infnan, set the NV of the sv accordingly.
* If numtype is anything else, try setting the NV using Atof(PV). */
-#ifdef USING_MSVC6
-# pragma warning(push)
-# pragma warning(disable:4756;disable:4056)
-#endif
static void
S_sv_setnv(pTHX_ SV* sv, int numtype)
{
@@ -2118,9 +2114,6 @@ S_sv_setnv(pTHX_ SV* sv, int numtype)
SvPOK_on(sv); /* PV is okay, though. */
}
}
-#ifdef USING_MSVC6
-# pragma warning(pop)
-#endif
STATIC bool
S_sv_2iuv_common(pTHX_ SV *const sv)