Skip to content

Commit 34cedf8

Browse files
authored
remove redudant interpolation
1 parent b9f74ce commit 34cedf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stage1/recurse_fwd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ end
4848

4949
_construct(::Type{B}, args) where B<:Tuple = B(args)
5050
# Hack for making things that do not have public constructors constructable:
51-
@generated _construct(B::Type, args) = :($(Expr(:splatnew, :B, :args)))
51+
@generated _construct(B::Type, args) = Expr(:splatnew, :B, :args)
5252

5353
@generated (::∂☆new{N})(B::Type) where {N} = return :(ZeroBundle{$N}($(Expr(:new, :B))))
5454

0 commit comments

Comments
 (0)