Skip to content

Commit f29a42e

Browse files
authored
Merge pull request #123 from JuliaSIMD/positionalthreadlocal
threadlocal is a positional rather than kwarg
2 parents b491dd0 + 23816ab commit f29a42e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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 = "Polyester"
22
uuid = "f517fe37-dbe3-4b94-8317-1923a5111588"
33
authors = ["Chris Elrod <elrodc@gmail.com> and contributors"]
4-
version = "0.7.8"
4+
version = "0.7.9"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/batch.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,5 +246,5 @@ function batch(
246246
args::Vararg{Any,K};
247247
threadlocal::Val{thread_local} = Val(false),
248248
) where {F,K,thread_local}
249-
batch(f!, (len, nbatches), args...; threadlocal)
249+
batch(f!, threadlocal, (len, nbatches), args...)
250250
end

0 commit comments

Comments
 (0)