Add missing conditional import for collection::Vec.

This commit is contained in:
Isis Lovecruft 2017-05-14 11:16:07 +00:00
parent af7be4aad0
commit fe58e81bbc
Failed to extract signature

View file

@ -77,6 +77,9 @@
// affine and projective cakes and eat both of them too.
#![allow(non_snake_case)]
#[cfg(not(feature = "std"))]
use collections::Vec;
use core::fmt::Debug;
use core::iter::Iterator;
use core::ops::{Add, Sub, Neg};