Skip to content

Commit

Permalink
fix: fix macro indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Sep 19, 2020
1 parent 90c689d commit 379d6e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dispatch/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,12 @@ impl Opt {
$other: ident,
bool: ($( $bool_field:ident ), *),
retain: ($( $retain_field:ident ), *),
) => {{
) => {
Config {
$($bool_field: self.$bool_field || $other.$bool_field,)*
$($retain_field: $other.$retain_field,)*
}
}};
};
}
make_actual_cfg! {
cfg,
Expand Down

0 comments on commit 379d6e0

Please sign in to comment.