diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-08-10 18:38:27 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-08-10 21:50:56 +0300 |
| commit | fa7fe196018e5fec39dee7ca6567c2024e60daf6 (patch) | |
| tree | beba5525dfbb2cf50b30cad8f37684ac74327b1a /src/libsyntax/ext/base.rs | |
| parent | be3fb0cd2cc408eb4cc9c1d71f9cedb2c974dcd9 (diff) | |
| download | rust-fa7fe196018e5fec39dee7ca6567c2024e60daf6.tar.gz rust-fa7fe196018e5fec39dee7ca6567c2024e60daf6.zip | |
resolve: Remove remaining special cases from built-in macros
Diffstat (limited to 'src/libsyntax/ext/base.rs')
| -rw-r--r-- | src/libsyntax/ext/base.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ext/base.rs b/src/libsyntax/ext/base.rs index d69822c7c7f..7f4feff6be6 100644 --- a/src/libsyntax/ext/base.rs +++ b/src/libsyntax/ext/base.rs @@ -592,8 +592,8 @@ pub struct SyntaxExtension { pub helper_attrs: Vec<Symbol>, /// Edition of the crate in which this macro is defined. pub edition: Edition, - /// Built-in macros have a couple of special properties (meaning of `$crate`, - /// availability in `#[no_implicit_prelude]` modules), so we have to keep this flag. + /// Built-in macros have a couple of special properties like availability + /// in `#[no_implicit_prelude]` modules, so we have to keep this flag. pub is_builtin: bool, /// We have to identify macros providing a `Copy` impl early for compatibility reasons. pub is_derive_copy: bool, |
