Skip to content

Commit f815672

Browse files
committed
Rustfmt
1 parent 858d8fa commit f815672

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/librustc/ty/query/plumbing.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,12 @@ where
263263
/// Completes the query by updating the query cache with the `result`,
264264
/// signals the waiter and forgets the JobOwner, so it won't poison the query
265265
#[inline(always)]
266-
pub(super) fn complete(self, tcx: TyCtxt<'tcx>, result: &C::Value, dep_node_index: DepNodeIndex) {
266+
pub(super) fn complete(
267+
self,
268+
tcx: TyCtxt<'tcx>,
269+
result: &C::Value,
270+
dep_node_index: DepNodeIndex,
271+
) {
267272
// We can move out of `self` here because we `mem::forget` it below
268273
let key = unsafe { ptr::read(&self.key) };
269274
let state = self.state;

0 commit comments

Comments
 (0)