diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-10-31 20:26:21 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-10-31 20:26:21 +0100 |
| commit | 110e4b9cb9dcbe590d345d8883f0c5f111752f1c (patch) | |
| tree | cb78d7efef91296c2022a02102897b96a25e8619 /src/layout/stacked.rs | |
| parent | 65ec3764e59353995a4feaa4214aea8c3e59bc3a (diff) | |
Spans for all parts of functions ✅
Diffstat (limited to 'src/layout/stacked.rs')
| -rw-r--r-- | src/layout/stacked.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/stacked.rs b/src/layout/stacked.rs index 0097ce3e..7521967b 100644 --- a/src/layout/stacked.rs +++ b/src/layout/stacked.rs @@ -30,7 +30,7 @@ pub struct StackContext { } macro_rules! reuse { - ($ctx:expr, $flow:expr) => { + ($ctx:expr, $flow:expr) => ( StackContext { alignment: $ctx.alignment, space: $ctx.space, @@ -38,7 +38,7 @@ macro_rules! reuse { shrink_to_fit: $ctx.shrink_to_fit, flow: $flow } - }; + ); } impl StackContext { |
