From 9929f9807715b07c1bcf22b1c2a4de55ac7c3d00 Mon Sep 17 00:00:00 2001 From: Tyler Slabinski Date: Thu, 16 May 2019 13:52:45 -0400 Subject: [PATCH] Stop warnings for unused doc comments in drm-ffi --- drm-ffi/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/drm-ffi/src/lib.rs b/drm-ffi/src/lib.rs index d1413b41..6f5e062b 100644 --- a/drm-ffi/src/lib.rs +++ b/drm-ffi/src/lib.rs @@ -3,6 +3,7 @@ //! #![warn(missing_docs)] +#![allow(unused_doc_comments)] #![feature(str_internals)] #![feature(untagged_unions)] extern crate core;