From 42906734e2ec3c7fbe10dbf90af6d41e8bf6e473 Mon Sep 17 00:00:00 2001 From: Yichao Yu Date: Sun, 18 Oct 2015 13:41:08 -0400 Subject: [PATCH] Compat for SparseArrays. Ref JuliaLang/julia#13440 --- src/Compat.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Compat.jl b/src/Compat.jl index 89a82e829..271c34029 100644 --- a/src/Compat.jl +++ b/src/Compat.jl @@ -701,4 +701,9 @@ if VERSION < v"0.5.0-dev+431" end end +if VERSION < v"0.5.0-dev+763" + export SparseArrays + const SparseArrays = SparseMatrix +end + end # module