diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-23 14:44:59 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-23 14:44:59 +0000 |
commit | 92e67595817e2efa2a2f6c3e6498b1f1babb5fbd (patch) | |
tree | 76b73812aa48ecb7c930efd8074555c3ce07c6f3 /pod/perlapi.pod | |
parent | c9869e1c0cac4f243c84d27552ad981d5363e0f7 (diff) | |
download | perl-92e67595817e2efa2a2f6c3e6498b1f1babb5fbd.tar.gz |
Un-const magic virtual tables; this consting breaks the nasty
things done by Swig, as noticed by Audrey.
p4raw-id: //depot/perl@26924
Diffstat (limited to 'pod/perlapi.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 933b2aa99e..5d807df536 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -5092,7 +5092,7 @@ to contain an C<SV*> and is stored as-is with its REFCNT incremented. (This is now used as a subroutine by C<sv_magic>.) - MAGIC * sv_magicext(SV* sv, SV* obj, int how, const MGVTBL *vtbl, const char* name, I32 namlen) + MAGIC * sv_magicext(SV* sv, SV* obj, int how, MGVTBL *vtbl, const char* name, I32 namlen) =for hackers Found in file sv.c |