Skip to content

Commit a9597f2

Browse files
committed
🤖 Format .jl files
1 parent 753a97f commit a9597f2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/test_allocs.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ allocate:
2626
```
2727
"""
2828
macro wrappedallocs(expr)
29-
argnames = [gensym() for a in expr.args]
30-
quote
31-
function g($(argnames...))
32-
@allocated $(Expr(expr.head, argnames...))
33-
end
34-
$(Expr(:call, :g, [esc(a) for a in expr.args]...))
29+
argnames = [gensym() for a in expr.args]
30+
quote
31+
function g($(argnames...))
32+
@allocated $(Expr(expr.head, argnames...))
3533
end
34+
$(Expr(:call, :g, [esc(a) for a in expr.args]...))
35+
end
3636
end
3737

3838
@testset "allocs" begin

0 commit comments

Comments
 (0)