diff options
Diffstat (limited to 'src/Selection.cxx')
-rw-r--r-- | src/Selection.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/Selection.cxx b/src/Selection.cxx index 5b99b7c3a..ad63afd70 100644 --- a/src/Selection.cxx +++ b/src/Selection.cxx @@ -52,13 +52,6 @@ void SelectionPosition::MoveForInsertDelete(bool insertion, Sci::Position startC } } -bool SelectionPosition::operator <(const SelectionPosition &other) const noexcept { - if (position == other.position) - return virtualSpace < other.virtualSpace; - else - return position < other.position; -} - bool SelectionPosition::operator >(const SelectionPosition &other) const noexcept { if (position == other.position) return virtualSpace > other.virtualSpace; |