From 8bb2a3326e92d553b9bea7462574a2d44782cbfd Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 2 Jun 2022 15:18:23 -0600 Subject: [PATCH] [map] Remove unneeded assignment --- src/hb-map.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hb-map.hh b/src/hb-map.hh index d3bb49a87..262954c34 100644 --- a/src/hb-map.hh +++ b/src/hb-map.hh @@ -86,7 +86,6 @@ struct hb_hashmap_t { new (std::addressof (key)) K (); new (std::addressof (value)) V (); - value = default_value (); hash = 0; is_used_ = false; is_tombstone_ = false;