From 80268673345745500d55b23f0c7867c9f141e21a Mon Sep 17 00:00:00 2001 From: Jonathan Reem Date: Tue, 9 Sep 2014 17:06:23 -0700 Subject: [PATCH] Deny missing documentation and all warnings for cleaner builds. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 44a052c8..c4463cfc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! # hyper #![feature(macro_rules, phase, default_type_params)] -#![warn(missing_doc)] -//#![deny(warnings)] +#![deny(missing_doc)] +#![deny(warnings)] #![experimental] extern crate time;