projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ccbc746
)
Remove unneeded cast
Rafael Garcia-Suarez [Fri, 28 Sep 2007 08:20:32 +0000 (08:20 +0000)]
p4raw-id: //depot/perl@31991
mro.c
patch
|
blob
|
blame
|
history
diff --git
a/mro.c
b/mro.c
index
f3db774
..
37a0e96
100644
(file)
--- a/
mro.c
+++ b/
mro.c
@@
-61,7
+61,7
@@
Perl_mro_meta_init(pTHX_ HV* stash)
HvAUX(stash)->xhv_mro_meta = newmeta;
newmeta->cache_gen = 1;
newmeta->pkg_gen = 1;
- newmeta->mro_which = (void *) mros;
+ newmeta->mro_which = mros;
return newmeta;
}