diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-08-31 15:24:48 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-08-31 15:25:32 -0700 |
| commit | 143569fce4e9c394496e8bac357511229255ed6a (patch) | |
| tree | f16bd5fdea522c8c34ac0d9b1a26430bfca14989 /src/rt/rust_gc.cpp | |
| parent | 03ddc8fdd358b0785a6bb635277336812ddbcc6a (diff) | |
| download | rust-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.cpp | 4 |
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; |
