diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-06-26 06:05:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-26 06:22:51 -0700 |
commit | ec79994d178a58009af5b2b0b22e1d93a4787c7a (patch) | |
tree | 6db1383f5f730935dba0bafa7485337292f97efd /proto.h | |
parent | 96d38a9d05abd090d07d5fb192de46417ec18593 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |