mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 14:23:11 +00:00
Use unsafe copy
This commit is contained in:
parent
429f69d84b
commit
aec919c713
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ function appendfrom!(dst, dpos, src, spos, n)
|
|||
if length(dst) < dpos + n - 1
|
||||
resize!(dst, dpos + n - 1)
|
||||
end
|
||||
copyto!(dst, dpos, src, spos, n)
|
||||
unsafe_copyto!(dst, dpos, src, spos, n)
|
||||
return dst
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue