diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-03-07 08:39:30 -0500 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-03-15 08:55:22 -0400 |
| commit | bb8a0ffa23d235e06280ff0d0b96f0b0e763d35c (patch) | |
| tree | 522a621fdcaba51d4e4d0371fba73f4aa0521386 /library/core/src/ops | |
| parent | 01d7af11e17887c4fc77902e77840d00309bf572 (diff) | |
| download | rust-bb8a0ffa23d235e06280ff0d0b96f0b0e763d35c.tar.gz rust-bb8a0ffa23d235e06280ff0d0b96f0b0e763d35c.zip | |
Bump to latest beta
Diffstat (limited to 'library/core/src/ops')
| -rw-r--r-- | library/core/src/ops/try_trait.rs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/library/core/src/ops/try_trait.rs b/library/core/src/ops/try_trait.rs index 86aa1e4fd20..c254803fbf6 100644 --- a/library/core/src/ops/try_trait.rs +++ b/library/core/src/ops/try_trait.rs @@ -392,14 +392,7 @@ impl<T> NeverShortCircuit<T> { pub fn wrap_mut_2<A, B>( mut f: impl ~const FnMut(A, B) -> T, ) -> impl ~const FnMut(A, B) -> Self { - cfg_if! { - if #[cfg(bootstrap)] { - #[allow(unused_parens)] - (const move |a, b| NeverShortCircuit(f(a, b))) - } else { - const move |a, b| NeverShortCircuit(f(a, b)) - } - } + const move |a, b| NeverShortCircuit(f(a, b)) } } |
