aboutsummaryrefslogtreecommitdiff
path: root/src/async_await/select_mod.rs
diff options
context:
space:
mode:
authorDavid LeGare <legare@google.com>2022-03-04 02:06:33 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-03-04 02:06:33 +0000
commite2f2e216a919a0c300a9b7942233344ed065925f (patch)
tree7b826874213015b98b9e0383a89c88be66b64b11 /src/async_await/select_mod.rs
parentd4344fa6b0ff2c5a8487fa8f1ed3904ad46cd82a (diff)
parentb9180251b318c57c5c635cff669a6ea82d56e516 (diff)
downloadfutures-util-e2f2e216a919a0c300a9b7942233344ed065925f.tar.gz
Update futures-util to 0.3.21 am: 737dc97288 am: b9180251b3
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/futures-util/+/2004175 Change-Id: I30785daabcfc58d3479c32b9aff9cc4130c3bfe0
Diffstat (limited to 'src/async_await/select_mod.rs')
-rw-r--r--src/async_await/select_mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/async_await/select_mod.rs b/src/async_await/select_mod.rs
index 37e938d..1d13067 100644
--- a/src/async_await/select_mod.rs
+++ b/src/async_await/select_mod.rs
@@ -29,9 +29,6 @@ macro_rules! document_select_macro {
/// It is also gated behind the `async-await` feature of this library, which is
/// activated by default.
///
- /// Note that `select!` relies on `proc-macro-hack`, and may require to set the
- /// compiler's recursion limit very high, e.g. `#![recursion_limit="1024"]`.
- ///
/// # Examples
///
/// ```
@@ -309,12 +306,10 @@ macro_rules! document_select_macro {
#[cfg(feature = "std")]
#[allow(unreachable_pub)]
#[doc(hidden)]
-#[cfg_attr(not(fn_like_proc_macro), proc_macro_hack::proc_macro_hack(support_nested))]
pub use futures_macro::select_internal;
#[allow(unreachable_pub)]
#[doc(hidden)]
-#[cfg_attr(not(fn_like_proc_macro), proc_macro_hack::proc_macro_hack(support_nested))]
pub use futures_macro::select_biased_internal;
document_select_macro! {