summaryrefslogtreecommitdiff
path: root/Source/WebCore/rendering/SimpleLineLayout.cpp
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2017-01-09 10:23:36 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2017-02-02 12:31:22 +0000
commit46167faa61861b01a0e4e8e774da9febc3c2956e (patch)
tree0d0074550506173a5671e1c0040b45f53e48cd6a /Source/WebCore/rendering/SimpleLineLayout.cpp
parentb9e202b0f12f275d4aade98943df92bf67684f52 (diff)
downloadqtwebkit-46167faa61861b01a0e4e8e774da9febc3c2956e.tar.gz
Imported WebKit commit 30997fb33975697a4af9cc6eef69967313d0ec9a
Change-Id: I8a2348dd9eb59df840dde6b66141d562aff29bf4 Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/WebCore/rendering/SimpleLineLayout.cpp')
-rw-r--r--Source/WebCore/rendering/SimpleLineLayout.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/WebCore/rendering/SimpleLineLayout.cpp b/Source/WebCore/rendering/SimpleLineLayout.cpp
index f35f61465..9a2ef6a18 100644
--- a/Source/WebCore/rendering/SimpleLineLayout.cpp
+++ b/Source/WebCore/rendering/SimpleLineLayout.cpp
@@ -532,6 +532,7 @@ public:
}
bool operator!=(const FragmentForwardIterator& other) const { return m_fragmentIndex != other.m_fragmentIndex; }
+ bool operator==(const FragmentForwardIterator& other) const { return m_fragmentIndex == other.m_fragmentIndex; }
unsigned operator*() const { return m_fragmentIndex; }
private: