From 87186f4de81566d78b5a7e1ed51e49b31e046208 Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Fri, 7 Feb 2025 19:11:26 -0500 Subject: [PATCH] Explicitly declare type constructor imports These would otherwise give a warning after JuliaLang/julia#57311, but are a good change even independently. --- src/SparseArrays.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SparseArrays.jl b/src/SparseArrays.jl index 2688a449..9c0bfd19 100644 --- a/src/SparseArrays.jl +++ b/src/SparseArrays.jl @@ -15,6 +15,7 @@ using LinearAlgebra: AdjOrTrans, AdjointFactorization, TransposeFactorization, m import Base: +, -, *, \, /, ==, zero +import Base: Matrix, Vector import LinearAlgebra: mul!, ldiv!, rdiv!, cholesky, adjoint!, diag, eigen, dot, issymmetric, istril, istriu, lu, tr, transpose!, tril!, triu!, isbanded, cond, diagm, factorize, ishermitian, norm, opnorm, lmul!, rmul!, tril, triu,