Skip to content

Commit

Permalink
Auto merge of #232 - c410-f3r:patch-1, r=mbrubeck
Browse files Browse the repository at this point in the history
Use min_const_generics
  • Loading branch information
bors-servo committed Aug 11, 2020
2 parents f7e01ef + 0e23d2a commit 87500c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -72,10 +72,10 @@

#![no_std]
#![cfg_attr(feature = "union", feature(untagged_unions))]
#![cfg_attr(feature = "specialization", allow(incomplete_features))]
#![cfg_attr(feature = "specialization", feature(specialization))]
#![cfg_attr(feature = "may_dangle", feature(dropck_eyepatch))]
#![cfg_attr(feature = "const_generics", allow(incomplete_features))]
#![cfg_attr(feature = "const_generics", feature(const_generics))]
#![cfg_attr(feature = "const_generics", feature(min_const_generics))]
#![deny(missing_docs)]

#[doc(hidden)]
Expand Down

0 comments on commit 87500c3

Please sign in to comment.