Skip to content

Commit b409432

Browse files
committed
code style
1 parent 514da67 commit b409432

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/transpose.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ for (In, Out) in ((AbstractVector, AbstractVecOrMat), (AbstractMatrix, AbstractM
8484
end
8585
end
8686
end
87-
function _unsafe_mul!(y::AbstractMatrix, Ac::ConjugateMap, x::Number)
88-
return _conjmul!(y, Ac.lmap.lmap, x)
89-
end
87+
_unsafe_mul!(y::AbstractMatrix, Ac::ConjugateMap, x::Number) = _conjmul!(y, Ac.lmap.lmap, x)
9088

9189
# multiplication helper function
9290
_conjmul!(y, A, x) = conj!(_unsafe_mul!(y, A, conj(x)))

0 commit comments

Comments
 (0)