Skip to content

Commit 858f9b5

Browse files
committed
Remove invalidating deepcopy definition
1 parent daf4a5a commit 858f9b5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LabelledArrays"
22
uuid = "2ee39098-c373-598a-b85f-a56591580800"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "1.12.5"
4+
version = "1.12.6"
55

66
[deps]
77
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/larray.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ end
130130

131131
# Allow copying LArray of uninitialized data, as with regular Array
132132
Base.copy(x::LArray) = typeof(x)(copy(getfield(x, :__x)))
133-
Base.deepcopy(x::LArray) = typeof(x)(deepcopy(getfield(x, :__x)))
134133
Base.copyto!(x::LArray, y::LArray) = copyto!(getfield(x, :__x), getfield(y, :__x))
135134

136135
# enable the usage of LAPACK

0 commit comments

Comments
 (0)