From 885b4b39ea6a6ada4a5e7ecc4a47d4c4abdb64ab Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Tue, 26 Jun 2012 20:52:25 +0100 Subject: [PATCH] Remove C++isms from doio.c (Introduced by c2fd40cb02 and not tolerated by VC++ compiling a C file.) --- doio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doio.c b/doio.c index 6890d12..8149172 100644 --- a/doio.c +++ b/doio.c @@ -1579,7 +1579,7 @@ Perl_apply(pTHX_ I32 type, register SV **mark, register SV **sp) const char *s; STRLEN len; SV ** const oldmark = mark; - bool killgp = false; + bool killgp = FALSE; PERL_ARGS_ASSERT_APPLY; @@ -1694,7 +1694,7 @@ nothing in the core. { s++; len--; - killgp = true; + killgp = TRUE; } if (isALPHA(*s)) { if (*s == 'S' && s[1] == 'I' && s[2] == 'G') { @@ -1709,7 +1709,7 @@ nothing in the core. val = SvIV(*mark); if (val < 0) { - killgp = true; + killgp = TRUE; val = -val; } } -- 2.7.4