Skip to content

Commit 8dc457e

Browse files
committed
don't need to comment that out
1 parent 655d32c commit 8dc457e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/macro.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ macro match(ex, lines)
5252
ex = $(esc(ex))
5353
end
5454

55-
# @static if VERSION < v"0.7.0-"
56-
# body = foldr((clause, body) -> makeclause(clause..., body),
57-
# nothing, clauses(lines))
58-
# else
55+
@static if VERSION < v"0.7.0-"
56+
body = foldr((clause, body) -> makeclause(clause..., body),
57+
nothing, clauses(lines))
58+
else
5959
body = foldr((clause, body) -> makeclause(clause..., body),
6060
clauses(lines); init=nothing)
61-
# end
61+
end
6262

6363
push!(result.args, body)
6464
return result

0 commit comments

Comments
 (0)