1
Fork 0

Rollup merge of #96149 - est31:remove_unused_macro_matchers, r=petrochenkov

Remove unused macro rules

Removes rules of internal macros that weren't triggered.
This commit is contained in:
Dylan DPC 2022-04-26 01:21:20 +02:00 committed by GitHub
commit 93db30aa7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 58 deletions

View file

@ -2249,10 +2249,6 @@ impl ToJson for Target {
let name = (stringify!($attr)).replace("_", "-");
d.insert(name, self.$attr.to_json());
}};
($attr:ident, $key_name:expr) => {{
let name = $key_name;
d.insert(name.into(), self.$attr.to_json());
}};
}
macro_rules! target_option_val {