Update to track changes in liballoc.

This commit is contained in:
whitequark 2018-07-11 01:57:50 +00:00
parent 970502e9fb
commit 125a102b71
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ use std::vec::Vec;
#[cfg(feature = "std")]
use std::collections::VecDeque;
#[cfg(feature = "alloc")]
use alloc::{Vec, VecDeque};
use alloc::vec::Vec;
#[cfg(feature = "alloc")]
use alloc::collections::VecDeque;
use Result;
use phy::{self, Device, DeviceCapabilities};