1
Fork 0

Reduce size of statements

This commit is contained in:
Roxane 2021-03-29 22:48:44 -04:00
parent 2fb1fb7634
commit 0a97eee8df
10 changed files with 16 additions and 14 deletions

View file

@ -80,7 +80,7 @@ impl<'tcx> CFG<'tcx> {
cause: FakeReadCause,
place: Place<'tcx>,
) {
let kind = StatementKind::FakeRead(cause, box place);
let kind = StatementKind::FakeRead(box (cause, place));
let stmt = Statement { source_info, kind };
self.push(block, stmt);
}