1
Fork 0

rustc_span: Replace a HashMap<_, ()> with HashSet

Now that `HashSet::entry()` exists, we don't need to fake it with a map.
This commit is contained in:
Josh Stone 2024-11-27 11:23:25 -08:00
parent 6b6a867ae9
commit e37ac2a66f
2 changed files with 7 additions and 5 deletions

View file

@ -22,6 +22,7 @@
#![feature(array_windows)]
#![feature(cfg_match)]
#![feature(core_io_borrowed_buf)]
#![feature(hash_set_entry)]
#![feature(if_let_guard)]
#![feature(let_chains)]
#![feature(min_specialization)]