summaryrefslogtreecommitdiff
path: root/mg.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-01-23 14:44:59 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-01-23 14:44:59 +0000
commit92e67595817e2efa2a2f6c3e6498b1f1babb5fbd (patch)
tree76b73812aa48ecb7c930efd8074555c3ce07c6f3 /mg.h
parentc9869e1c0cac4f243c84d27552ad981d5363e0f7 (diff)
downloadperl-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 'mg.h')
-rw-r--r--mg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg.h b/mg.h
index 3e9073211c..a373defc99 100644
--- a/mg.h
+++ b/mg.h
@@ -26,7 +26,7 @@ struct mgvtbl {
struct magic {
MAGIC* mg_moremagic;
- const MGVTBL* mg_virtual; /* pointer to magic functions */
+ MGVTBL* mg_virtual; /* pointer to magic functions */
U16 mg_private;
char mg_type;
U8 mg_flags;