Commit 1619fe52 authored by WAAutoMaton's avatar WAAutoMaton
Browse files
parent 9d69a509
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ struct Node_t {
  int l, r;
  mutable int v;
  Node_t(const int &il, const int &ir, const int &iv) : l(il), r(ir), v(iv) {}
  inline bool operator(const Node_t &o) const { return l < o.l; }
  inline bool operator<(const Node_t &o) const { return l < o.l; }
};
```