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

Unified Diff: third_party/WebKit/Source/platform/PODRedBlackTreeTest.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h 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/platform/PODRedBlackTreeTest.cpp
diff --git a/third_party/WebKit/Source/platform/PODRedBlackTreeTest.cpp b/third_party/WebKit/Source/platform/PODRedBlackTreeTest.cpp
index 34e5710b7fb2c4efbe756a2f05f26da4635c3623..4b185de8363d447fd3311527d21e0386afb15026 100644
--- a/third_party/WebKit/Source/platform/PODRedBlackTreeTest.cpp
+++ b/third_party/WebKit/Source/platform/PODRedBlackTreeTest.cpp
@@ -170,7 +170,7 @@ void InsertionAndDeletionTest(const int32_t seed, const int treeSize) {
int value = nextRandom(maximumValue);
tree.add(value);
ASSERT_TRUE(tree.checkInvariants()) << "Test failed for seed " << seed;
- values.append(value);
+ values.push_back(value);
}
// Churn the tree's contents.
for (int i = 0; i < treeSize; i++) {
« no previous file with comments | « third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp ('k') | third_party/WebKit/Source/platform/SharedBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698