Replace local_inner_macros

The #[macro_export(local_inner_macros)] attribute is intended for macros
that require compatibility with rustc <1.30. When targeting only
compilers that support calling macros as $crate::m!(...), that should be
used instead.
This commit is contained in:
David Tolnay 2019-04-03 08:23:38 -07:00
parent cc46fbe621
commit 2239185d82
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
4 changed files with 33 additions and 32 deletions

View file

@ -96,7 +96,9 @@
//!
//! See the individual macro documentation for more details.
#[doc(hidden)]
pub extern crate tt_call;
#[doc(hidden)]
pub extern crate failure;
mod join;