chore: bump to newer nightly (#1284)

This commit is contained in:
Carl Lerche
2019-07-10 14:36:36 -07:00
committed by GitHub
parent a79483750f
commit 7ac8bfc821
5 changed files with 8 additions and 2 deletions
+1
View File
@@ -362,6 +362,7 @@ fn is_tx_closed(bits: usize) -> bool {
impl<T> Values<T> {
unsafe fn uninitialized() -> Values<T> {
#[allow(deprecated)]
let mut vals = mem::uninitialized();
// When fuzzing, `CausalCell` needs to be initialized.
+1
View File
@@ -112,6 +112,7 @@ struct State(usize);
/// # t.join().unwrap().wait().unwrap();
/// ```
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
#[allow(deprecated)]
let inner = Arc::new(Inner {
state: AtomicUsize::new(State::new().as_usize()),
value: CausalCell::new(None),