Skip to content

Commit

Permalink
typo in conversion of Array typing [Julia v0.6 standards]
Browse files Browse the repository at this point in the history
  • Loading branch information
reesepathak committed Sep 18, 2017
1 parent 8af67e2 commit b0725c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
@@ -1,2 +1,2 @@
julia 0.5
julia 0.4
Compat
2 changes: 1 addition & 1 deletion src/atoms/transpose.jl
Expand Up @@ -10,7 +10,7 @@ function transpose(x::AffineExpr)
num_cols = x.size[2]

I = Array{Int64}(vec_sz)
J = Array(Int64}(vec_sz)
J = Array{Int64}(vec_sz)

k = 1
for r = 1:num_rows
Expand Down

0 comments on commit b0725c3

Please sign in to comment.