Skip to content

Commit cdd1049

Browse files
committed
Use the portable AtomicU64
1 parent e1e8857 commit cdd1049

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_query_system/src/dep_graph/serialized.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ use std::cell::RefCell;
4343
use std::cmp::max;
4444
use std::marker::PhantomData;
4545
use std::sync::Arc;
46-
use std::sync::atomic::{AtomicU64, Ordering};
46+
use std::sync::atomic::Ordering;
4747
use std::{iter, mem, u64};
4848

4949
use rustc_data_structures::fingerprint::{Fingerprint, PackedFingerprint};
5050
use rustc_data_structures::fx::FxHashMap;
5151
use rustc_data_structures::outline;
5252
use rustc_data_structures::profiling::SelfProfilerRef;
53-
use rustc_data_structures::sync::{Lock, WorkerLocal, broadcast};
53+
use rustc_data_structures::sync::{AtomicU64, Lock, WorkerLocal, broadcast};
5454
use rustc_data_structures::unhash::UnhashMap;
5555
use rustc_index::IndexVec;
5656
use rustc_serialize::opaque::mem_encoder::MemEncoder;

0 commit comments

Comments
 (0)