Skip to content

Commit

Permalink
be explicit about types
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung authored Apr 21, 2022
1 parent bf17dbe commit b472ef5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/eval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ impl Default for MiriConfig {
forwarded_env_vars: vec![],
args: vec![],
seed: None,
tracked_pointer_tags: Default::default(),
tracked_call_ids: Default::default(),
tracked_alloc_ids: Default::default(),
tracked_pointer_tags: HashSet::default(),
tracked_call_ids: HashSet::default(),
tracked_alloc_ids: HashSet::default(),
tag_raw: false,
data_race_detector: true,
cmpxchg_weak_failure_rate: 0.8,
Expand Down

0 comments on commit b472ef5

Please sign in to comment.