mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fix double increment
This commit is contained in:
parent
04f9e243c8
commit
628114dbeb
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public abstract class CharArrayMap {
|
||||||
}
|
}
|
||||||
|
|
||||||
// nope, add it in
|
// nope, add it in
|
||||||
if (++currEntry >= keyTable.length){
|
if (currEntry + 1 >= keyTable.length){
|
||||||
//need to recompute hash for this add, recurse
|
//need to recompute hash for this add, recurse
|
||||||
resize();
|
resize();
|
||||||
return add( buffer, start, len );
|
return add( buffer, start, len );
|
||||||
|
|
Loading…
Add table
Reference in a new issue