Closed
Description
The following attempt to construct a Polly fails
using StaticArrays
type Polly{N,T}
data::SVector{N,T}
end
p = Polly{2,Float64}((1.0, 0.0))
As @andyferris pointed out on discourse this can be fixed by adding a conversion method from a tuple to an SVector.