about summary refs log tree commit diff
path: root/library/core/src/ops
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-03-07 08:39:30 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2023-03-15 08:55:22 -0400
commitbb8a0ffa23d235e06280ff0d0b96f0b0e763d35c (patch)
tree522a621fdcaba51d4e4d0371fba73f4aa0521386 /library/core/src/ops
parent01d7af11e17887c4fc77902e77840d00309bf572 (diff)
downloadrust-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.rs9
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))
     }
 }