Skip to content

Commit 51f816f

Browse files
committed
Rustfmt
1 parent b8bbbe3 commit 51f816f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/base.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,8 @@ fn trans_stmt<'tcx>(
698698
// FIXME use emit_small_memset where possible
699699
let addr = lval.to_ptr().get_addr(fx);
700700
let val = operand.load_scalar(fx);
701-
fx.bcx.call_memset(fx.cx.module.target_config(), addr, val, times);
701+
fx.bcx
702+
.call_memset(fx.cx.module.target_config(), addr, val, times);
702703
} else {
703704
let loop_block = fx.bcx.create_block();
704705
let loop_block2 = fx.bcx.create_block();

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
associated_type_bounds,
66
never_type,
77
try_blocks,
8-
hash_drain_filter,
8+
hash_drain_filter
99
)]
1010
#![warn(rust_2018_idioms)]
1111
#![warn(unused_lifetimes)]

0 commit comments

Comments
 (0)