Skip to content

Commit 3e4c0e6

Browse files
mcabbottoxinabox
authored andcommitted
rm 1 gensym
1 parent 5f4fdb1 commit 3e4c0e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rule_definition_tools.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ _propagator_inputs(n) = [esc(gensym(Symbol(:Δ, i))) for i in 1:n]
221221

222222
"given the variable names, escaped but without types, makes setup expressions for projection operators"
223223
function _make_projectors(xs)
224-
projs = map(x -> gensym(Symbol(:proj_, x.args[1])), xs)
224+
projs = map(x -> Symbol(:proj_, x.args[1]), xs)
225225
setups = map((x,p) -> :($p = ProjectTo($x)), xs, projs)
226226
return projs, setups
227227
end

0 commit comments

Comments
 (0)