| 139 | } |
| 140 | |
| 141 | void MoveToNextHashMatch() |
| 142 | { |
| 143 | int wantHash = this->mSet->mEntries[this->mCurEntry].mHashCode; |
| 144 | do |
| 145 | { |
| 146 | this->mCurEntry = this->mSet->mEntries[this->mCurEntry].mNext; |
| 147 | } |
| 148 | while ((this->mCurEntry != -1) && (this->mSet->mEntries[this->mCurEntry].mHashCode != wantHash)); |
| 149 | if (this->mCurEntry == -1) |
| 150 | this->mCurBucket = mSet->mHashSize; |
| 151 | } |
| 152 | }; |
| 153 | |
| 154 | protected: |
no outgoing calls
no test coverage detected