From cfd710205c7cebf419d04f49d6763493ca605c44 Mon Sep 17 00:00:00 2001 From: dpo Date: Fri, 20 May 2022 14:08:57 +0000 Subject: [PATCH] :robot: Format .jl files --- src/abstract.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abstract.jl b/src/abstract.jl index aa1f8262..498612d6 100644 --- a/src/abstract.jl +++ b/src/abstract.jl @@ -168,7 +168,7 @@ has_args5(op::AbstractMatrix) = true # Needed for BlockDiagonalOperator # Alert user of the need for storage_type method definition for arbitrary, user defined operators storage_type(op::AbstractLinearOperator) = error("please implement storage_type for $(typeof(op))") -storage_type(op::LinearOperator) = typeof(op.Mv5) +storage_type(op::LinearOperator) = typeof(op.Mv5) storage_type(M::AbstractMatrix{T}) where {T} = Vector{T} """