Skip to content

Commit 7b76fa5

Browse files
committed
robin_const_iterator Bug fix in robin_hash.h
1 parent 8543a19 commit 7b76fa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thirdparty/robin-map/include/tsl/robin_hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ class robin_hash : private Hash, private KeyEqual, private GrowthPolicy {
564564

565565
robin_const_iterator operator++(int)
566566
{
567-
robin_iterator tmp(*this);
567+
robin_const_iterator tmp(*this);
568568
++*this;
569569

570570
return tmp;

0 commit comments

Comments
 (0)