update iface cc code to not walk contents (as with other boxes)

This commit is contained in:
Niko Matsakis 2012-01-11 18:28:09 -08:00
parent 70367d757c
commit 09869cd056
1 changed files with 4 additions and 2 deletions

View File

@ -111,7 +111,8 @@ class irc : public shape::data<irc,shape::ptr> {
} }
void walk_iface() { void walk_iface() {
shape::data<irc,shape::ptr>::walk_iface_contents(dp); //shape::data<irc,shape::ptr>::walk_iface_contents(dp);
shape::data<irc,shape::ptr>::walk_box_contents();
} }
void walk_res(const shape::rust_fn *dtor, unsigned n_params, void walk_res(const shape::rust_fn *dtor, unsigned n_params,
@ -502,7 +503,8 @@ class sweep : public shape::data<sweep,shape::ptr> {
} }
void walk_iface() { void walk_iface() {
shape::data<sweep,shape::ptr>::walk_iface_contents(dp); //shape::data<sweep,shape::ptr>::walk_iface_contents(dp);
shape::data<sweep,shape::ptr>::walk_box_contents();
} }
void walk_res(const shape::rust_fn *dtor, unsigned n_params, void walk_res(const shape::rust_fn *dtor, unsigned n_params,