about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2020-05-26 14:03:34 -0700
committerJosh Stone <jistone@redhat.com>2020-05-29 17:05:17 -0700
commit10efaa37de8411272de3623ce50714d4860dc561 (patch)
treeead8bb9098d7fcc9e71f9d8b10ee34b2c8c6bb99 /src
parente4345547b967a1fed4d62f6f0c539b56a2131aa4 (diff)
downloadrust-10efaa37de8411272de3623ce50714d4860dc561.tar.gz
rust-10efaa37de8411272de3623ce50714d4860dc561.zip
Remove an old comment from HashMap::extend_reserve
Diffstat (limited to 'src')
-rw-r--r--src/libstd/collections/hash/map.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index a51f1998e44..5ba5eff4407 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -2465,7 +2465,6 @@ where
 
     #[inline]
     fn extend_reserve(&mut self, additional: usize) {
-        // self.base.extend_reserve(additional);
         Extend::<(K, V)>::extend_reserve(self, additional)
     }
 }