Skip to content

Commit

Permalink
🤖 Format .jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
dpo committed May 21, 2022
1 parent 011d807 commit cfd7102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstract.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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}

"""
Expand Down

0 comments on commit cfd7102

Please sign in to comment.