Remove unused macro rules

This commit is contained in:
est31 2022-04-17 14:18:08 +02:00
parent 8305398d7a
commit 3c1e1661e7
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 {