From a475299053dbfb9a5452b0d11a08106b8a37f748 Mon Sep 17 00:00:00 2001 From: Rafael Schouten Date: Thu, 21 Sep 2023 21:58:39 +0200 Subject: [PATCH] Macro main (#118) * fix zip syntax * test macro on Main._DiskArray --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 65b6d2b..2ae12ec 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -40,7 +40,7 @@ end _DiskArray(a; chunksize=size(a)) = _DiskArray(Ref(0), Ref(0), a, chunksize) # Apply the all in one macro rather than inheriting -DiskArrays.@implement_diskarray _DiskArray +DiskArrays.@implement_diskarray Main._DiskArray Base.size(a::_DiskArray) = size(a.parent) DiskArrays.haschunks(::_DiskArray) = DiskArrays.Chunked()