commit | c706539429298dcbea4b6413d5aaec1a57483f8a | [log] [tgz] |
---|---|---|
author | Taylor Cramer <cramertj@google.com> | Mon Jan 14 12:59:44 2019 -0800 |
committer | Taylor Cramer <cramertj@google.com> | Mon Jan 14 12:59:44 2019 -0800 |
tree | 2b282474abced04bd6701c016ec0ed285b0258bb | |
parent | fc0c837e73918f685d6f268f1e1273d265e27b5b [diff] |
Allow non_camel_case_type warning on custom_keyword
diff --git a/src/keyword.rs b/src/keyword.rs index baebc70..b02cd1c 100644 --- a/src/keyword.rs +++ b/src/keyword.rs
@@ -89,6 +89,7 @@ #[macro_export(local_inner_macros)] macro_rules! custom_keyword { ($ident:ident) => { + #[allow(non_camel_case_types)] pub struct $ident { pub span: $crate::export::Span, }