diff options
author | Tony Cook <tony@develop-help.com> | 2011-02-04 15:14:49 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2011-02-04 15:14:49 +1100 |
commit | 377157fd699f058398b744427e3a6b43c71637ef (patch) | |
tree | 06b66648e375a8623be43f909d66bf75f8c9c564 | |
parent | 27e11f680f7c80fcc13af61ed142eaa4af8fc68f (diff) | |
download | perl-377157fd699f058398b744427e3a6b43c71637ef.tar.gz |
use the macro that casts to HV * so threaded C++ builds, build
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13113,7 +13113,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_utf8_tofold = sv_dup_inc(proto_perl->Iutf8_tofold, param); PL_utf8_idstart = sv_dup_inc(proto_perl->Iutf8_idstart, param); PL_utf8_idcont = sv_dup_inc(proto_perl->Iutf8_idcont, param); - PL_utf8_foldable = sv_dup_inc(proto_perl->Iutf8_foldable, param); + PL_utf8_foldable = hv_dup_inc(proto_perl->Iutf8_foldable, param); /* Did the locale setup indicate UTF-8? */ PL_utf8locale = proto_perl->Iutf8locale; |