summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-06 19:17:42 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-06 21:22:43 -0700
commit69527dbda3f30fa198e45d54e96c981aae416bf3 (patch)
tree79e0ced9f4e4d8d968202dac02635292f19bc360 /proto.h
parent6f33e417aad1cacc68f58df4589f26a8a1fd88a0 (diff)
downloadperl-69527dbda3f30fa198e45d54e96c981aae416bf3.tar.gz
embed.fnc: Properly declare fcn inline
This function is specified as inline in the source code, but not in the prototypes; only one compiler seems to have noticed.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index d9435b59ca..d85e9af5f6 100644
--- a/proto.h
+++ b/proto.h
@@ -6515,7 +6515,7 @@ PERL_STATIC_INLINE bool S_invlist_is_iterating(pTHX_ SV* const invlist)
#define PERL_ARGS_ASSERT_INVLIST_IS_ITERATING \
assert(invlist)
-STATIC void S_invlist_iterfinish(pTHX_ SV* invlist)
+PERL_STATIC_INLINE void S_invlist_iterfinish(pTHX_ SV* invlist)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_INVLIST_ITERFINISH \
assert(invlist)