Derive Debug for LangItem

This commit is contained in:
bjorn3 2017-11-25 17:33:47 +01:00 committed by GitHub
parent 7f06055d60
commit 0854bfbac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ macro_rules! language_item_table {
enum_from_u32! {
#[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
pub enum LangItem {
$($variant,)*
}