diff --git a/examples/hello.rs b/examples/hello.rs index 0f6b0e24..f6924402 100644 --- a/examples/hello.rs +++ b/examples/hello.rs @@ -2,7 +2,6 @@ extern crate hyper; extern crate futures; extern crate pretty_env_logger; -//extern crate num_cpus; use futures::future::FutureResult; @@ -11,7 +10,6 @@ use hyper::server::{Http, Service, Request, Response}; static PHRASE: &'static [u8] = b"Hello World!"; -#[derive(Clone, Copy)] struct Hello; impl Service for Hello {