From a6117f0fc039690fb9c7c9f48c44e23b847b0d8a Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Thu, 24 Nov 2022 14:52:35 +0600 Subject: [PATCH] Use `Forward` from the module it is defined from (#293) `Base.Order` defines `Forward` and `Base.Sort` uses it. --- src/SparseArrays.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseArrays.jl b/src/SparseArrays.jl index 7ec4bed5..fc67f9a6 100644 --- a/src/SparseArrays.jl +++ b/src/SparseArrays.jl @@ -7,7 +7,7 @@ module SparseArrays using Base: ReshapedArray, promote_op, setindex_shape_check, to_shape, tail, require_one_based_indexing, promote_eltype -using Base.Sort: Forward +using Base.Order: Forward using LinearAlgebra using LinearAlgebra: AdjOrTrans, matprod