Skip to content

Commit 9d0a9da

Browse files
committed
Use symcon instead of * operator
1 parent d81d7fe commit 9d0a9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/usual_constraints.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ macro usual(ex::Expr)
113113
if haskey(USUAL_CONSTRAINTS, c)
114114
push!(USUAL_CONSTRAINTS[c].params, defaults)
115115
else # Enter new constraint
116-
ds = :description * c
116+
ds = symcon(:description, c)
117117
description = isdefined(Constraints, ds) ? eval(ds) : "No given description!"
118118

119119
params = [defaults]

0 commit comments

Comments
 (0)