diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-25 15:52:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-25 15:52:33 +0000 |
commit | c21d1a0f049833fd2ca59ef598337f86f2cd08f4 (patch) | |
tree | 14de04bc69e174d99a2c18b667d2260f381dd9ef /proto.h | |
parent | 4ba4de046b58ba69d5377ba3b48b04bbfd30638f (diff) | |
download | perl-c21d1a0f049833fd2ca59ef598337f86f2cd08f4.tar.gz |
Track the mapping between source shared hash keys and target shared
hash keys to save repeated lookups during cloning.
p4raw-id: //depot/perl@24574
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1816,7 +1816,7 @@ STATIC void S_del_he(pTHX_ HE *p); STATIC HEK* S_save_hek_flags(pTHX_ const char *str, I32 len, U32 hash, int flags); STATIC void S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store); STATIC void S_unshare_hek_or_pvn(pTHX_ HEK* hek, const char* sv, I32 len, U32 hash); -STATIC HEK* S_share_hek_flags(pTHX_ const char* sv, I32 len, U32 hash, int flags); +STATIC HE* S_share_hek_flags(pTHX_ const char* sv, I32 len, U32 hash, int flags); STATIC void S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen, const char *msg) __attribute__noreturn__; |