Skip to content

Commit 75ee1ed

Browse files
committed
Run fmt
1 parent 6ad3389 commit 75ee1ed

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

compiler/rustc_query_system/src/query/caches.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,7 @@ where
279279
if let Some((_key, val, dep_node)) = &*lock {
280280
Ok(on_hit(&val, *dep_node))
281281
} else {
282-
Err(QueryLookup {
283-
key_hash: 0,
284-
shard: 0
285-
})
282+
Err(QueryLookup { key_hash: 0, shard: 0 })
286283
}
287284
}
288285

compiler/rustc_query_system/src/query/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ pub use self::job::{print_query_stack, QueryInfo, QueryJob, QueryJobId, QueryJob
88

99
mod caches;
1010
pub use self::caches::{
11-
ArenaCacheSelector, CacheSelector, SingletonCacheSelector, DefaultCacheSelector, QueryCache, QueryStorage,
11+
ArenaCacheSelector, CacheSelector, DefaultCacheSelector, QueryCache, QueryStorage,
12+
SingletonCacheSelector,
1213
};
1314

1415
mod config;

0 commit comments

Comments
 (0)