diff options
| author | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2015-01-16 23:07:49 +0100 |
|---|---|---|
| committer | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2015-01-31 11:38:47 +0100 |
| commit | 2e07b0d6be3d2ffcfb154b5cbbe02bc166014172 (patch) | |
| tree | 0986af952cdd60aa2755dbf425ff794c0440bf0f /src | |
| parent | 6f233aaa0c743cc6ca7e42d7dcd4b7d92ef4ad9a (diff) | |
| download | rust-2e07b0d6be3d2ffcfb154b5cbbe02bc166014172.tar.gz rust-2e07b0d6be3d2ffcfb154b5cbbe02bc166014172.zip | |
Deprecate SyntaxExtension::Modifier
Replaced by SyntaxExtension::MultiModifier [breaking-change]
Diffstat (limited to 'src')
| -rw-r--r-- | src/libsyntax/ext/base.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/ext/base.rs b/src/libsyntax/ext/base.rs index b63678881f6..d3cedee6d21 100644 --- a/src/libsyntax/ext/base.rs +++ b/src/libsyntax/ext/base.rs @@ -431,6 +431,7 @@ pub enum SyntaxExtension { /// A syntax extension that is attached to an item and modifies it /// in-place. + #[deprecated="Replaced by MultiModifier"] Modifier(Box<ItemModifier + 'static>), /// A syntax extension that is attached to an item and modifies it |
