Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/noirc_evaluator/src/ssa/ir/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ impl<T> std::ops::IndexMut<Id<T>> for SparseMap<T> {
/// Useful for assigning ids before the storage is created or assigning ids
/// for types that have no single owner.
///
/// This type wraps an AtomicUsize so it can safely be used across threads.
/// This type wraps an atomic number so it can safely be used across threads.
#[derive(Debug, Serialize, Deserialize)]
pub struct AtomicCounter<T> {
next: AtomicU32,
Expand Down
Loading