Przeglądaj źródła

LibWeb: Remove unused LayoutPosition comparison operators

Andreas Kling 5 lat temu
rodzic
commit
379e6f5817
1 zmienionych plików z 0 dodań i 18 usunięć
  1. 0 18
      Libraries/LibWeb/Layout/LayoutPosition.h

+ 0 - 18
Libraries/LibWeb/Layout/LayoutPosition.h

@@ -33,24 +33,6 @@ namespace Web {
 class LayoutNode;
 
 struct LayoutPosition {
-    bool operator>=(const LayoutPosition& other) const
-    {
-        if (layout_node == other.layout_node)
-            return index_in_node >= other.index_in_node;
-
-        // FIXME: Implement.
-        return true;
-    }
-
-    bool operator<=(const LayoutPosition& other) const
-    {
-        if (layout_node == other.layout_node)
-            return index_in_node <= other.index_in_node;
-
-        // FIXME: Implement.
-        return false;
-    }
-
     RefPtr<LayoutNode> layout_node;
     int index_in_node { 0 };
 };