Skip to content

Commit

Permalink
helped resolve issue #38 for + method
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Apr 20, 2020
1 parent e77a30f commit a9943ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ julia:
- 1.1
- 1.2
- 1.3
- 1.4
- nightly
jobs:
allow_failures:
Expand Down
3 changes: 3 additions & 0 deletions src/args.jl
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ for fun in iops
function $fun(a::T,b::ExprSymbol,s...) where T <: Number
$fun(RExpr(a),RExpr(b),RExpr.(s)...) |> parse
end
function $fun(a::A,b::B,c::ExprSymbol,s...) where {A<:Number,B<:Number}
$fun(RExpr(a),RExpr(b),RExpr(c),RExpr.(s)...) |> parse
end
end
end

Expand Down

0 comments on commit a9943ce

Please sign in to comment.