From 55caf2ae1c1b9df350cc459e85f4a91904d7d563 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Fri, 22 Feb 2013 17:44:49 +0100 Subject: [PATCH] Fix VectorStorage.Equals(object) redirection #90 --- src/Numerics/LinearAlgebra/Storage/VectorStorage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Numerics/LinearAlgebra/Storage/VectorStorage.cs b/src/Numerics/LinearAlgebra/Storage/VectorStorage.cs index ac156ed6..2b717573 100644 --- a/src/Numerics/LinearAlgebra/Storage/VectorStorage.cs +++ b/src/Numerics/LinearAlgebra/Storage/VectorStorage.cs @@ -143,7 +143,7 @@ namespace MathNet.Numerics.LinearAlgebra.Storage /// The to compare with the current . public override sealed bool Equals(object obj) { - return Equals(obj as MatrixStorage); + return Equals(obj as VectorStorage); } ///