1
Fork 0

Merge crate collections into alloc

This commit is contained in:
Murarth 2017-06-13 15:52:59 -07:00
parent e40ef964fe
commit eadda7665e
97 changed files with 2348 additions and 2517 deletions

View file

@ -1222,11 +1222,12 @@ mod tests {
use std::sync::atomic;
use std::sync::atomic::Ordering::{Acquire, SeqCst};
use std::thread;
use std::vec::Vec;
use super::{Arc, Weak};
use std::sync::Mutex;
use std::convert::From;
use super::{Arc, Weak};
use vec::Vec;
struct Canary(*mut atomic::AtomicUsize);
impl Drop for Canary {