From 2d97a80d7f659133813a40d82e00806f4f14d03b Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Tue, 28 Jan 2025 14:18:07 -0500 Subject: Add CursorPosition::operator<= --- ui/flowgraphwidget.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/flowgraphwidget.h b/ui/flowgraphwidget.h index b36c9043..858b8126 100644 --- a/ui/flowgraphwidget.h +++ b/ui/flowgraphwidget.h @@ -88,6 +88,7 @@ class BINARYNINJAUIAPI FlowGraphWidget : bool operator==(const CursorPosition& other) const; bool operator<(const CursorPosition& other) const; + bool operator<=(const CursorPosition& other) const; }; BinaryViewRef m_data; -- cgit v1.3.1