From 379d6e018e70417e1d7f9dfcbbb9e3e7aa02e110 Mon Sep 17 00:00:00 2001 From: rami3l Date: Sat, 19 Sep 2020 23:58:45 +0800 Subject: [PATCH] fix: fix macro indentation --- src/dispatch/opt.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dispatch/opt.rs b/src/dispatch/opt.rs index 9ad4f11833e..f00ab9fa674 100644 --- a/src/dispatch/opt.rs +++ b/src/dispatch/opt.rs @@ -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,