about summary refs log tree commit diff
path: root/src/rt/rust_gc.cpp
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2011-08-31 15:24:48 -0700
committerPatrick Walton <pcwalton@mimiga.net>2011-08-31 15:25:32 -0700
commit143569fce4e9c394496e8bac357511229255ed6a (patch)
treef16bd5fdea522c8c34ac0d9b1a26430bfca14989 /src/rt/rust_gc.cpp
parent03ddc8fdd358b0785a6bb635277336812ddbcc6a (diff)
downloadrust-143569fce4e9c394496e8bac357511229255ed6a.tar.gz
rust-143569fce4e9c394496e8bac357511229255ed6a.zip
rt: Make |align| a member of the shape glue class instead of threading it through every function
Diffstat (limited to 'src/rt/rust_gc.cpp')
-rw-r--r--src/rt/rust_gc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_gc.cpp b/src/rt/rust_gc.cpp
index 19cf4f55f72..1b2a38fd972 100644
--- a/src/rt/rust_gc.cpp
+++ b/src/rt/rust_gc.cpp
@@ -121,9 +121,9 @@ gc::mark(std::vector<root> &roots) {
         shape::arena arena;
         shape::type_param *params = shape::type_param::from_tydesc(ri->tydesc,
                                                                    arena);
-        shape::log log(task, ri->tydesc->shape, params,
+        shape::log log(task, true, ri->tydesc->shape, params,
                        ri->tydesc->shape_tables, ri->data, std::cerr);
-        log.walk(true);
+        log.walk();
         DPRINT("\n");
 
         ++ri;