Skip to content

Commit

Permalink
Merge c9537b9 into 4cfeb58
Browse files Browse the repository at this point in the history
  • Loading branch information
c42f committed Oct 16, 2019
2 parents 4cfeb58 + c9537b9 commit 184ccec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -16,6 +16,7 @@ notifications:
branches:
only:
- master
- /release-.*/
- /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags for Documenter.jl, see # 298
# matrix:
# allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,6 +1,6 @@
name = "StaticArrays"
uuid = "90137ffa-7385-5640-81b9-e52037218182"
version = "0.11.0"
version = "0.11.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion src/SArray.jl
Expand Up @@ -46,7 +46,7 @@ end
@generated function (::Type{SArray{S}})(x::T) where {S <: Tuple, T <: Tuple}
return quote
@_inline_meta
SArray{S, $(promote_tuple_eltype(T)), $(tuple_length(S)), $(tuple_prod(S))}(x)
SArray{S, promote_tuple_eltype(T), $(tuple_length(S)), $(tuple_prod(S))}(x)
end
end

Expand Down

0 comments on commit 184ccec

Please sign in to comment.