Skip to content

Commit 0e8567e

Browse files
committed
Clean up var names
1 parent c536593 commit 0e8567e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/OperatorEnumConstruction.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function _extend_unary_operator(f::Symbol, type_requirements, internal)
125125
$_constructorof(N)(T; val=$($f)(l.val::T))
126126
else
127127
latest_op_idx = $($lookup_op)($($f), Val(1))
128-
$_constructorof(N)(; op=latest_op_idx, l=l)
128+
$_constructorof(N)(; op=latest_op_idx, l)
129129
end
130130
end
131131
end
@@ -152,7 +152,7 @@ function _extend_binary_operator(f::Symbol, type_requirements, build_converters,
152152
$_constructorof(N)(T; val=$($f)(l.val::T, r.val::T))
153153
else
154154
latest_op_idx = $($lookup_op)($($f), Val(2))
155-
$_constructorof(N)(; op=latest_op_idx, l=l, r=r)
155+
$_constructorof(N)(; op=latest_op_idx, l, r)
156156
end
157157
end
158158
function $($f)(
@@ -163,7 +163,7 @@ function _extend_binary_operator(f::Symbol, type_requirements, build_converters,
163163
else
164164
latest_op_idx = $($lookup_op)($($f), Val(2))
165165
$_constructorof(N)(;
166-
op=latest_op_idx, l=l, r=$_constructorof(N)(T; val=r)
166+
op=latest_op_idx, l, r=$_constructorof(N)(T; val=r)
167167
)
168168
end
169169
end
@@ -175,7 +175,7 @@ function _extend_binary_operator(f::Symbol, type_requirements, build_converters,
175175
else
176176
latest_op_idx = $($lookup_op)($($f), Val(2))
177177
$_constructorof(N)(;
178-
op=latest_op_idx, l=$_constructorof(N)(T; val=l), r=r
178+
op=latest_op_idx, l=$_constructorof(N)(T; val=l), r
179179
)
180180
end
181181
end

0 commit comments

Comments
 (0)