Skip to content

Commit

Permalink
try test on win32 again (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
heliosdrm authored Dec 18, 2018
1 parent b33e773 commit a6a1048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment:
- julia_version: nightly

platform:
# - x86 # 32-bit
- x86 # 32-bit
- x64 # 64-bit

# # Uncomment the following lines to allow failures on nightly julia
Expand Down
4 changes: 2 additions & 2 deletions src/matrices.jl
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ end
function _crossrecurrencematrix(x::Dataset, y::Dataset, ε, metric::Metric)
x = x.data
y = y.data
rowvals = Vector{Int64}()
colvals = Vector{Int64}()
rowvals = Vector{Int}()
colvals = Vector{Int}()
for j in 1:length(y)
nzcol = 0
for i in 1:length(x)
Expand Down

0 comments on commit a6a1048

Please sign in to comment.