Skip to content

Commit 7c26409

Browse files
Update src/extension_algs.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 63c8f44 commit 7c26409

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extension_algs.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ struct RFLUFactorization{P, T} <: AbstractDenseFactorization
9797
function RFLUFactorization(::Val{P}, ::Val{T}; throwerror=true) where {P, T}
9898
ext = Base.get_extension(@__MODULE__, :LinearSolveRecursiveFactorizationExt)
9999
if ext === nothing
100-
throwerror && error("RFLUFactorization requires that RecursiveFactorization.jl is loaded, i.e. `using RecursiveFactorization`")
100+
throwerror &&
101+
error("RFLUFactorization requires that RecursiveFactorization.jl is loaded, i.e. `using RecursiveFactorization`")
101102
end
102103
return new{P, T}()
103104
end

0 commit comments

Comments
 (0)