diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-13 09:00:00 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-13 09:00:00 +0000 |
commit | 63f971906e4e2f134a559c695d28f479cac191db (patch) | |
tree | daf0ab168206b2dc8c82f7957846a0acd4b1135a /pod | |
parent | a227dc4778e24da2c5bc2ffad02a89310996ff78 (diff) | |
download | perl-63f971906e4e2f134a559c695d28f479cac191db.tar.gz |
Make SvUPGRADE always have the value '1'
Make sv_upgrade a void function
p4raw-id: //depot/perl@24817
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 80990d1699..6ffe590e6e 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -5046,7 +5046,7 @@ Upgrade an SV to a more complex form. Generally adds a new body type to the SV, then copies across as much information as possible from the old body. You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>. - bool sv_upgrade(SV* sv, U32 mt) + void sv_upgrade(SV* sv, U32 mt) =for hackers Found in file sv.c |