about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/sso/map.rs
diff options
context:
space:
mode:
authorKornel <kornel@geekhood.net>2021-08-29 23:21:33 +0100
committerKornel <kornel@geekhood.net>2021-10-04 10:29:46 +0100
commit00152d89776b632905cfa4ae58e594055298c9c8 (patch)
tree7f347d15c16ced00aae3c3bd65e230295a3b1acf /compiler/rustc_data_structures/src/sso/map.rs
parentd25de31a0eeb14ab0c8c4613496fe2d3d9a085dd (diff)
downloadrust-00152d89776b632905cfa4ae58e594055298c9c8.tar.gz
rust-00152d89776b632905cfa4ae58e594055298c9c8.zip
Stabilize try_reserve
Diffstat (limited to 'compiler/rustc_data_structures/src/sso/map.rs')
-rw-r--r--compiler/rustc_data_structures/src/sso/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/sso/map.rs b/compiler/rustc_data_structures/src/sso/map.rs
index e249886e9bc..2de05cd4e56 100644
--- a/compiler/rustc_data_structures/src/sso/map.rs
+++ b/compiler/rustc_data_structures/src/sso/map.rs
@@ -31,7 +31,7 @@ const SSO_ARRAY_SIZE: usize = 8;
 //
 // Missing HashMap API:
 //   all hasher-related
-//   try_reserve (unstable)
+//   try_reserve
 //   shrink_to (unstable)
 //   drain_filter (unstable)
 //   into_keys/into_values (unstable)