diff options
| author | klensy <klensy@users.noreply.github.com> | 2023-11-27 18:09:17 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2023-11-27 18:13:15 +0300 |
| commit | 31d99836bff1dc3366a8cd370c019a789f193b88 (patch) | |
| tree | 7ad1cf23ec57dd7f7d5f4640140cc94f9d12a783 /compiler/rustc_query_system/src/query/mod.rs | |
| parent | b29a1e00f850e548f3021ea523d0e143724fa9b7 (diff) | |
| download | rust-31d99836bff1dc3366a8cd370c019a789f193b88.tar.gz rust-31d99836bff1dc3366a8cd370c019a789f193b88.zip | |
QueryContext: rename try_collect_active_jobs -> collect_active_jobs and change it's return type from Option<QueryMap> to QueryMap
As there currently always Some(...) inside
Diffstat (limited to 'compiler/rustc_query_system/src/query/mod.rs')
| -rw-r--r-- | compiler/rustc_query_system/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/query/mod.rs b/compiler/rustc_query_system/src/query/mod.rs index 05dee9f12db..96a0c7a033a 100644 --- a/compiler/rustc_query_system/src/query/mod.rs +++ b/compiler/rustc_query_system/src/query/mod.rs @@ -106,7 +106,7 @@ pub trait QueryContext: HasDepContext { /// Get the query information from the TLS context. fn current_query_job(self) -> Option<QueryJobId>; - fn try_collect_active_jobs(self) -> Option<QueryMap>; + fn collect_active_jobs(self) -> QueryMap; /// Load side effects associated to the node in the previous session. fn load_side_effects(self, prev_dep_node_index: SerializedDepNodeIndex) -> QuerySideEffects; |
