From cbecb877971826871fa409364722cf684bf3cabf Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 3 Jan 2019 11:26:58 -0800 Subject: [PATCH] executor: fix build (#825) Two unrelated PRs to the same file resulted in a broken build. This patch fixes the build by including `Arc`. --- tokio-executor/src/park.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tokio-executor/src/park.rs b/tokio-executor/src/park.rs index 00deb1e67..05ed58d52 100644 --- a/tokio-executor/src/park.rs +++ b/tokio-executor/src/park.rs @@ -46,6 +46,7 @@ use std::marker::PhantomData; use std::rc::Rc; +use std::sync::Arc; use std::time::Duration; use crossbeam_utils::sync::{Parker, Unparker};