Skip to content

Commit c18ef74

Browse files
committed
Make check_args of a type forward to check_type
1 parent ae13c27 commit c18ef74

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 = "LoopVectorization"
22
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
33
authors = ["Chris Elrod <[email protected]>"]
4-
version = "0.12.2"
4+
version = "0.12.3"
55

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

src/condense_loopset.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ end
381381
end
382382
@inline check_args(A, B, C::Vararg{Any,K}) where {K} = check_args(A) && check_args(B, C...)
383383
@inline check_args(::AbstractRange{T}) where {T} = check_type(T)
384-
@inline check_args(::Type{T}) where {T <: VectorizationBase.NativeTypesV} = true
384+
@inline check_args(::Type{T}) where {T} = check_type(T)
385385
"""
386386
check_type(::Type{T}) where {T}
387387

0 commit comments

Comments
 (0)