Skip to content

Commit

Permalink
Allow unused_braces on Nightly doc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
martell committed Apr 24, 2020
1 parent 3a66c0e commit 2c1bd2d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions diesel_derives/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#![recursion_limit = "1024"]
// Built-in Lints
#![deny(warnings, missing_copy_implementations)]
// Nightly Regression https://github.com/rust-lang/rust/issues/70814
#![cfg_attr(feature = "nightly", allow(unused_braces))]
// Clippy lints
#![allow(
clippy::needless_doctest_main,
Expand Down

0 comments on commit 2c1bd2d

Please sign in to comment.