Pārlūkot izejas kodu

Small fix.

Use function instead of original expression.
xry
LazyWolfLin pirms 3 gadiem
vecāks
revīzija
3806fbc23c
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. +1
    -1
      db/skiplist.h

+ 1
- 1
db/skiplist.h Parādīt failu

@ -243,7 +243,7 @@ int SkipList::RandomHeight() {
// Increase height with probability 1 in kBranching
static const unsigned int kBranching = 4;
int height = 1;
while (height < kMaxHeight && ((rnd_.Next() % kBranching) == 0)) {
while (height < kMaxHeight && rnd_.OneIn(kBranching)) {
height++;
}
assert(height > 0);

Notiek ielāde…
Atcelt
Saglabāt