Fix missing type annotation.
This commit is contained in:
parent
2119c1adf5
commit
a7acd5b832
|
@ -66,7 +66,8 @@ where
|
||||||
{
|
{
|
||||||
#[inline]
|
#[inline]
|
||||||
fn arbitrary<G: Gen>(rng: &mut G) -> Self {
|
fn arbitrary<G: Gen>(rng: &mut G) -> Self {
|
||||||
Self::from(Arbitrary::arbitrary(rng))
|
let v: VectorN<N, D> = Arbitrary::arbitrary(rng);
|
||||||
|
Self::from(v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue