Skip to content

Commit

Permalink
fix issue #62.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Sep 16, 2018
1 parent 73484df commit 64ef2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparsepp/spp.h
Original file line number Diff line number Diff line change
Expand Up @@ -3234,7 +3234,7 @@ class sparse_hashtable
std::pair<iterator, bool> insert(P &&obj)
{
_resize_delta(1); // adding an object, grow if need be
value_type val(std::forward<value_type>(obj));
value_type val(std::forward<P>(obj));
return _insert_noresize(val);
}
#endif
Expand Down

0 comments on commit 64ef2a7

Please sign in to comment.