Commit c3d977cd authored by Margatroid's avatar Margatroid
Browse files

fix(llrbt): make bot happy

parent 34cdd95a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -130,8 +130,6 @@
      }
      return root;
    }
    ```

    template<class Key, class Compare>
    typename Set<Key, Compare>::Node *
    Set<Key, Compare>::delete_min(Set::Node *root) const {
@@ -205,7 +203,6 @@
    template <class Key, class Compare = std::less<Key>>
    class Set {
     private:
    ```

      enum NodeColor {
        kBlack = 0, kRed = 1