diff options
author | Andy Lester <andy@petdance.com> | 2006-06-11 17:44:34 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-06-12 10:07:18 +0000 |
commit | 42d0e0b77a1ef47b81ab3e346a1a4dc0af5b9bec (patch) | |
tree | 7011adacbdf7230ca54109588b961d605d72fae6 /pod | |
parent | be8e71aa96b3d344129617fadcaca7d958882caa (diff) | |
download | perl-42d0e0b77a1ef47b81ab3e346a1a4dc0af5b9bec.tar.gz |
Proper use of enums
Message-ID: <20060612034434.GA21588@petdance.com>
p4raw-id: //depot/perl@28381
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 d852746a79..ca9dfa301d 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -5891,7 +5891,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>. - void sv_upgrade(SV* sv, U32 mt) + void sv_upgrade(SV* sv, svtype new_type) =for hackers Found in file sv.c |