We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a514c commit a9edf86Copy full SHA for a9edf86
1 file changed
fc_btree.h
@@ -524,8 +524,10 @@ requires(Fanout >= 2 && FanoutLeaf >= 2) class BTreeBase {
524
}
525
526
[[nodiscard]] bool verify() const {
527
- assert(begin_ == const_iterator_type(leftmost_leaf(root_.get()), 0));
528
- assert(verify(root_.get()));
+ // Uncomment these lines for testing
+
529
+ // assert(begin_ == const_iterator_type(leftmost_leaf(root_.get()), 0));
530
+ // assert(verify(root_.get()));
531
return true;
532
533
0 commit comments