Skip to content

Commit 6bfdc24

Browse files
committed
Apply clang-format
1 parent 8ed5191 commit 6bfdc24

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tt.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ TTEntry *TranspositionTable::lookup(uint64_t hash) {
6868
TTEntry &e0 = table[index], &e1 = table[index + 1];
6969
// Check the entries
7070
for (TTEntry *e : {&e0, &e1}) {
71-
if (e->key == hash &&
72-
e->getGeneration() == this->time)
71+
if (e->key == hash && e->getGeneration() == this->time)
7372
return e;
7473
}
7574
return nullptr;

0 commit comments

Comments
 (0)