mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-28 07:48:37 -04:00
putil: Ensure SimpleHashMap::_deleted_chain/_table are always initialized
Good to be on the safe side.
This commit is contained in:
parent
f7ab42da56
commit
ac021e94d6
@ -31,6 +31,8 @@ SimpleHashMap(const Compare &comp) :
|
||||
template<class Key, class Value, class Compare>
|
||||
INLINE SimpleHashMap<Key, Value, Compare>::
|
||||
SimpleHashMap(const SimpleHashMap ©) :
|
||||
_table(nullptr),
|
||||
_deleted_chain(nullptr),
|
||||
_table_size(copy._table_size),
|
||||
_num_entries(copy._num_entries),
|
||||
_comp(copy._comp) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user