summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-06-26 06:05:06 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-06-26 06:22:51 -0700
commitec79994d178a58009af5b2b0b22e1d93a4787c7a (patch)
tree6db1383f5f730935dba0bafa7485337292f97efd /proto.h
parent96d38a9d05abd090d07d5fb192de46417ec18593 (diff)
downloadperl-ec79994d178a58009af5b2b0b22e1d93a4787c7a.tar.gz
embed.fnc: S_ptr_hash is inline
S_ptr_hash is declared with PERL_STATIC_INLINE in hv.c, but embed thinks it is just static, so the proto.h and hv.c definitions do not match, resulting in warnings.
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 b035d84e82..86dffce6b3 100644
--- a/proto.h
+++ b/proto.h
@@ -5725,7 +5725,7 @@ STATIC HE* S_new_he(pTHX)
__attribute__malloc__
__attribute__warn_unused_result__;
-STATIC U32 S_ptr_hash(PTRV u);
+PERL_STATIC_INLINE U32 S_ptr_hash(PTRV u);
STATIC SV * S_refcounted_he_value(pTHX_ const struct refcounted_he *he)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_REFCOUNTED_HE_VALUE \