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++) { |