Skip to content

Commit b4c93a7

Browse files
committed
Remove inline annotation
1 parent 3f37f86 commit b4c93a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chol.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ chol_lower(a::Matrix) = cholesky(a).L
33

44
# always use the stored cholesky factor, not a copy
55
chol_lower(a::CholType) = a.uplo === 'L' ? a.L : a.U'
6-
@inline chol_upper(a::CholType) = a.uplo === 'U' ? a.U : a.L'
6+
chol_upper(a::CholType) = a.uplo === 'U' ? a.U : a.L'
77

88
if HAVE_CHOLMOD
99
CholTypeSparse{T} = SuiteSparse.CHOLMOD.Factor{T}

0 commit comments

Comments
 (0)