Skip to content

Commit

Permalink
remove compat usage
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Aug 4, 2017
1 parent 0f2851c commit f702021
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
julia 0.6
DualNumbers
Compat 0.7.15
4 changes: 2 additions & 2 deletions src/Octonion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ end


macro ocmul(i, j)
si = @compat Symbol("v$i")
sj = @compat Symbol("v$j")
si = Symbol("v$i")
sj = Symbol("v$j")
esc(:(o.$si * w.$sj - o.$sj * w.$si))
end

Expand Down
1 change: 0 additions & 1 deletion src/Quaternions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ __precompile__()

module Quaternions
importall Base
using Compat

include("Quaternion.jl")
include("Octonion.jl")
Expand Down

0 comments on commit f702021

Please sign in to comment.