Skip to content

Commit 5f4db5b

Browse files
committed
Fix downstream tests
1 parent 7a351ed commit 5f4db5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArrayLayouts.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ include("triangular.jl")
126126
include("factorizations.jl")
127127

128128
# Extend this function if you're only looking to dispatch on the axes
129-
@inline sub_materialize_axes(V, ax) = copyto!(similar(V, ax), V)
129+
@inline sub_materialize_axes(V, _) = copyto!(similar(V, axes(V)), V)
130130
@inline sub_materialize(_, V, ax) = sub_materialize_axes(V, ax)
131131
@inline sub_materialize(L, V) = sub_materialize(L, V, axes(V))
132132
@inline sub_materialize(V::SubArray) = sub_materialize(MemoryLayout(V), V)

0 commit comments

Comments
 (0)