diff options
| author | bors <bors@rust-lang.org> | 2023-02-10 06:20:01 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-02-10 06:20:01 +0000 |
| commit | 9b8dbd558c1c4b25c55d987e22baba312ae980ad (patch) | |
| tree | 01a4fc75c18238e8a06732a498dc5b5d6634d1d4 /compiler/rustc_query_impl/src | |
| parent | a6975734632c4771edd45ef10e7d4753541d0f3a (diff) | |
| parent | 9300617dab0618896db6eb72ef42c0a180d841b2 (diff) | |
| download | rust-9b8dbd558c1c4b25c55d987e22baba312ae980ad.tar.gz rust-9b8dbd558c1c4b25c55d987e22baba312ae980ad.zip | |
Auto merge of #107870 - matthiaskrgr:rollup-3z1q4rm, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #107043 (Support `true` and `false` as boolean flag params) - #107831 (Query refactoring) - #107841 (Handled snap curl issue inside Rust) - #107852 (rustdoc: remove unused fn parameter `tab`) - #107861 (Sync release notes for 1.67.1) - #107863 (Allow multiple candidates with same response in new solver) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_query_impl/src')
| -rw-r--r-- | compiler/rustc_query_impl/src/plumbing.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/plumbing.rs b/compiler/rustc_query_impl/src/plumbing.rs index 4dea03c1ef6..49309db564e 100644 --- a/compiler/rustc_query_impl/src/plumbing.rs +++ b/compiler/rustc_query_impl/src/plumbing.rs @@ -124,7 +124,7 @@ impl QueryContext for QueryCtxt<'_> { }; // Use the `ImplicitCtxt` while we execute the query. - tls::enter_context(&new_icx, |_| { + tls::enter_context(&new_icx, || { rustc_data_structures::stack::ensure_sufficient_stack(compute) }) }) |
