Skip to content

Commit 23bc8a2

Browse files
committed
Merge branch 'master' of github.com:dmbates/MixedModels.jl
2 parents d149c5c + 382f149 commit 23bc8a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
julia: 1.0
2121
os: linux
2222
script:
23-
- julia --project=docs -e 'using Pkg; Pkg.add("Documenter"); Pkg.instantiate()'
23+
- julia --project=docs -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps); Pkg.instantiate()'
2424
- julia --project=docs --color=yes docs/make.jl
2525
after_success: skip
2626
notifications:

src/simulate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function LinearAlgebra.Cholesky(L::LowerTriangular) # FIXME: this is type pirac
124124
break
125125
end
126126
end
127-
Cholesky(L, 'L', info)
127+
Cholesky(L, 'L', LinearAlgebra.BlasInt(info))
128128
end
129129

130130
"""

0 commit comments

Comments
 (0)