Index: Source/core/xml/XPathFunctions.h |
diff --git a/Source/core/xml/XPathFunctions.h b/Source/core/xml/XPathFunctions.h |
index 0ecb1fd0a531db79375a3bd100d729806cbd38b8..85365e6420364aff1659cb4d3e9205526f8c0d3c 100644 |
--- a/Source/core/xml/XPathFunctions.h |
+++ b/Source/core/xml/XPathFunctions.h |
@@ -35,7 +35,7 @@ namespace XPath { |
class Function : public Expression { |
public: |
- void setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression> >&); |
+ void setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression>>&); |
void setName(const String& name) { m_name = name; } |
protected: |
@@ -49,7 +49,7 @@ private: |
}; |
Function* createFunction(const String& name); |
-Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&); |
+Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression>>&); |
} // namespace XPath |