Missed a FIXME.

This commit is contained in:
Jack Moffitt 2013-04-04 09:56:12 -06:00
parent 6a3956cedd
commit 1f2f708a05

View file

@ -592,7 +592,7 @@ impl BoxedMutDebugMethods for RenderBox {
&ImageBox(*) => ~"ImageBox",
&TextBox(_,d) => fmt!("TextBox(text=%s)", str::substr(d.run.text, d.range.begin(), d.range.length())),
&UnscannedTextBox(_, ref s) => {
let s = s;
let s = s; // FIXME: borrow checker workaround
fmt!("UnscannedTextBox(%s)", *s)
}
};