Skip to content

Commit c41cb37

Browse files
committed
Whitespace
1 parent 6655056 commit c41cb37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/memory.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ function Base.unsafe_copyto!(dev::MTLDevice, dst::Ptr{T}, src::MtlPtr{T}, N::Int
7171
unsafe_copyto!(dst, convert(Ptr{T}, tmp_buf), N)
7272
end
7373
free(tmp_buf)
74-
elseif storage_type == MTL.MTLStorageModeShared
74+
elseif storage_type == MTL.MTLStorageModeShared
7575
unsafe_copyto!(dst, convert(Ptr{T}, src), N)
76-
elseif storage_type == MTL.MTLStorageModeManaged
76+
elseif storage_type == MTL.MTLStorageModeManaged
7777
cmdbuf = MTLCommandBuffer(queue) do cmdbuf
7878
MTLBlitCommandEncoder(cmdbuf) do enc
7979
append_sync!(enc, src.buffer)

0 commit comments

Comments
 (0)