Skip to content

Commit 143569f

Browse files
committed
rt: Make |align| a member of the shape glue class instead of threading it through every function
1 parent 03ddc8f commit 143569f

File tree

3 files changed

+240
-231
lines changed

3 files changed

+240
-231
lines changed

src/rt/rust_gc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ gc::mark(std::vector<root> &roots) {
121121
shape::arena arena;
122122
shape::type_param *params = shape::type_param::from_tydesc(ri->tydesc,
123123
arena);
124-
shape::log log(task, ri->tydesc->shape, params,
124+
shape::log log(task, true, ri->tydesc->shape, params,
125125
ri->tydesc->shape_tables, ri->data, std::cerr);
126-
log.walk(true);
126+
log.walk();
127127
DPRINT("\n");
128128

129129
++ri;

0 commit comments

Comments
 (0)