Fixed bug in Rope::rebalance(). Stats weren't updated after rebalance.

This commit is contained in:
Nathan Vegdahl 2015-02-19 22:46:30 -08:00
parent 5500c845f5
commit 2df1302723

View File

@ -564,6 +564,8 @@ impl Rope {
left.rebalance();
}
}
self.update_stats();
}
}