Skip to content

Commit 89bd5d0

Browse files
committed
Fix issue with unescaped OperatorEnum
1 parent db21b70 commit 89bd5d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OperatorEnumConstruction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function _extend_operators(operators, skip_user_operators, __module__::Module)
185185
local build_converters
186186
local binary_exists
187187
local unary_exists
188-
if isa($operators, OperatorEnum)
188+
if isa($operators, $OperatorEnum)
189189
type_requirements = Number
190190
build_converters = true
191191
binary_exists = $(ALREADY_DEFINED_BINARY_OPERATORS).operator_enum

0 commit comments

Comments
 (0)