about summary refs log tree commit diff
path: root/src/rt/rust_cc.cpp
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2012-01-11 18:28:09 -0800
committerNiko Matsakis <niko@alum.mit.edu>2012-01-11 18:28:09 -0800
commit09869cd0560c47f13c9740c121eac1a051b34bf4 (patch)
tree15d5a9dc9634ba1c14c57ac7e2f8fbde80ebaa44 /src/rt/rust_cc.cpp
parent70367d757c98d6dfd8797283d02d3e3a9d6d3169 (diff)
downloadrust-09869cd0560c47f13c9740c121eac1a051b34bf4.tar.gz
rust-09869cd0560c47f13c9740c121eac1a051b34bf4.zip
update iface cc code to not walk contents (as with other boxes)
Diffstat (limited to 'src/rt/rust_cc.cpp')
-rw-r--r--src/rt/rust_cc.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rt/rust_cc.cpp b/src/rt/rust_cc.cpp
index d04ae2e09df..06a66366f78 100644
--- a/src/rt/rust_cc.cpp
+++ b/src/rt/rust_cc.cpp
@@ -111,7 +111,8 @@ class irc : public shape::data<irc,shape::ptr> {
     }
 
     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,
@@ -502,7 +503,8 @@ class sweep : public shape::data<sweep,shape::ptr> {
     }
 
     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,