Skip to content

Commit 8e9ccf2

Browse files
committed
Fix line length
1 parent 2af1f16 commit 8e9ccf2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/macros.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ cfg_if! {
152152
if #[cfg(feature = "extern-const-fn")] {
153153
#[allow(unused_macros)]
154154
macro_rules! f {
155-
($(pub $({$constness:ident})* fn $i:ident($($arg:ident: $argty:ty),*) -> $ret:ty {
155+
($(pub $({$constness:ident})* fn $i:ident(
156+
$($arg:ident: $argty:ty),*
157+
) -> $ret:ty {
156158
$($body:stmt);*
157159
})*) => ($(
158160
#[inline]
@@ -164,7 +166,9 @@ cfg_if! {
164166
} else {
165167
#[allow(unused_macros)]
166168
macro_rules! f {
167-
($(pub $({$constness:ident})* fn $i:ident($($arg:ident: $argty:ty),*) -> $ret:ty {
169+
($(pub $({$constness:ident})* fn $i:ident(
170+
$($arg:ident: $argty:ty),*
171+
) -> $ret:ty {
168172
$($body:stmt);*
169173
})*) => ($(
170174
#[inline]

0 commit comments

Comments
 (0)