Skip to content

Commit 1e8ca6e

Browse files
authored
expand_cxxstring_abis(Vector{<:AbstractPlatform}) (#125)
`expand_cxxstring_abis(ps::Vector{<:Platform}; kwargs...)` should be expanded to `expand_cxxstring_abis(ps::Vector{<:AbstractPlatform}; kwargs...)` to match the scalar version of `expand_cxxstring_abis(platform::AbstractPlatform; skip=Sys.isbsd)`
1 parent 34bd81d commit 1e8ca6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rootfs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ function expand_cxxstring_abis(platform::AbstractPlatform; skip=Sys.isbsd)
734734
return p
735735
end
736736
end
737-
function expand_cxxstring_abis(ps::Vector{<:Platform}; kwargs...)
737+
function expand_cxxstring_abis(ps::Vector{<:AbstractPlatform}; kwargs...)
738738
return collect(Iterators.flatten(expand_cxxstring_abis.(ps; kwargs...)))
739739
end
740740

0 commit comments

Comments
 (0)