robin_const_iterator Bug fix in robin_hash.h

This commit is contained in:
unknown 2022-08-03 18:45:10 +05:30
parent 8543a19980
commit 7b76fa5680
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ public:
robin_const_iterator operator++(int)
{
robin_iterator tmp(*this);
robin_const_iterator tmp(*this);
++*this;
return tmp;