Index: Source/core/svg/SVGCursorElement.cpp |
diff --git a/Source/core/svg/SVGCursorElement.cpp b/Source/core/svg/SVGCursorElement.cpp |
index ce260c9abbb07140ac1a7832db4c1da41e7ddfb5..f66fa49fb4f988fdc61b607e789866bb902b2ebf 100644 |
--- a/Source/core/svg/SVGCursorElement.cpp |
+++ b/Source/core/svg/SVGCursorElement.cpp |
@@ -76,7 +76,7 @@ void SVGCursorElement::addClient(SVGElement* element) |
#if !ENABLE(OILPAN) |
void SVGCursorElement::removeClient(SVGElement* element) |
{ |
- HashSet<RawPtr<SVGElement> >::iterator it = m_clients.find(element); |
+ HashSet<RawPtr<SVGElement>>::iterator it = m_clients.find(element); |
if (it != m_clients.end()) { |
m_clients.remove(it); |
element->cursorElementRemoved(); |