summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/inline.h b/inline.h
index 9542e3b9d6..ba6b44d836 100644
--- a/inline.h
+++ b/inline.h
@@ -3487,15 +3487,7 @@ Perl_mortal_getenv(const char * str)
PERL_STATIC_INLINE bool
Perl_sv_isbool(pTHX_ const SV *sv)
{
- /* change to the following in 5.37, logically the same but
- * more efficient and more future proof */
-#if 0
- return (SvBoolFlagsOK(sv) && BOOL_INTERNALS_sv_isbool(sv));
-#else
- return SvIOK(sv) && SvPOK(sv) && SvIsCOW_static(sv) &&
- (SvPVX_const(sv) == PL_Yes || SvPVX_const(sv) == PL_No);
-#endif
-
+ return SvBoolFlagsOK(sv) && BOOL_INTERNALS_sv_isbool(sv);
}
#ifdef USE_ITHREADS