summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-09-11 15:56:11 -0600
committerKarl Williamson <khw@cpan.org>2019-09-15 10:39:56 -0600
commitb9d5702c94e722aa7b69045bcffee45cc7d7d517 (patch)
tree5074bd302d3e51ea60fa12db55408926592b69a1 /inline.h
parent3f2f854a8971dad2da7193c73a1a3d2bdc3085d4 (diff)
downloadperl-b9d5702c94e722aa7b69045bcffee45cc7d7d517.tar.gz
Make PadnameIN_SCOPE() name begin with S_
All functions should have a prefix.
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/inline.h b/inline.h
index 951818a1ed..501a264dbc 100644
--- a/inline.h
+++ b/inline.h
@@ -119,8 +119,10 @@ S_MgBYTEPOS(pTHX_ MAGIC *mg, SV *sv, const char *s, STRLEN len)
#if defined(PERL_IN_PAD_C) || defined(PERL_IN_OP_C)
PERL_STATIC_INLINE bool
-PadnameIN_SCOPE(const PADNAME * const pn, const U32 seq)
+S_PadnameIN_SCOPE(const PADNAME * const pn, const U32 seq)
{
+ PERL_ARGS_ASSERT_PADNAMEIN_SCOPE;
+
/* is seq within the range _LOW to _HIGH ?
* This is complicated by the fact that PL_cop_seqmax
* may have wrapped around at some point */