Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(650)

Unified Diff: third_party/WebKit/Source/core/xml/XPathExpressionNode.h

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/xml/XPathExpressionNode.h
diff --git a/third_party/WebKit/Source/core/xml/XPathExpressionNode.h b/third_party/WebKit/Source/core/xml/XPathExpressionNode.h
index acb4dd5b759e99ece0d5ab26de71a77940efba64..5892c299f6b6b4b003339cceb84757fb140305d6 100644
--- a/third_party/WebKit/Source/core/xml/XPathExpressionNode.h
+++ b/third_party/WebKit/Source/core/xml/XPathExpressionNode.h
@@ -72,7 +72,7 @@ class CORE_EXPORT Expression : public ParseNode {
m_isContextNodeSensitive |= expr->m_isContextNodeSensitive;
m_isContextPositionSensitive |= expr->m_isContextPositionSensitive;
m_isContextSizeSensitive |= expr->m_isContextSizeSensitive;
- m_subExpressions.append(expr);
+ m_subExpressions.push_back(expr);
}
bool isContextNodeSensitive() const { return m_isContextNodeSensitive; }

Powered by Google App Engine
This is Rietveld 408576698