summaryrefslogtreecommitdiffstats
path: root/tokio/src/task/local.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-12-01 12:49:38 -0800
committerGitHub <noreply@github.com>2019-12-01 12:49:38 -0800
commit8b60c5386a60be4dacffe71823350040e8ba90fd (patch)
tree5f030468b5d5a1018f4194ed24c8935d66f20f0c /tokio/src/task/local.rs
parentaf07f5bee72bc5c93ed1331cdba3a10f9ae7f569 (diff)
doc: fix documented feature flags for tokio::task (#1876)
Some feature flags are missing and some are duplicated. Closes #1836
Diffstat (limited to 'tokio/src/task/local.rs')
-rw-r--r--tokio/src/task/local.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tokio/src/task/local.rs b/tokio/src/task/local.rs
index 6d0adf31..7f29e3d1 100644
--- a/tokio/src/task/local.rs
+++ b/tokio/src/task/local.rs
@@ -13,6 +13,7 @@ use std::sync::Mutex;
use std::task::{Context, Poll};
use pin_project_lite::pin_project;
+
cfg_rt_util! {
/// A set of tasks which are executed on the same thread.
///