Fixed harmless uninit var warning

This commit is contained in:
Andrey Tuganov 2018-01-31 16:59:55 -05:00 committed by David Neto
parent ac537c71a8
commit 905536c519

View File

@ -609,7 +609,7 @@ void MoveToFront<Val>::InsertNode(uint32_t node) {
// Will determine if |node| will become the right or left child after
// insertion (but before balancing).
bool right_child;
bool right_child = true;
// Find the node which will become |node|'s parent after insertion
// (but before balancing).