Index: third_party/WebKit/Source/platform/heap/ThreadState.cpp |
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
index 6ae1096dacf00a01271040cb4cd6b5fd044a5a1e..fa04eda6ea2814d6d4ea93f8e6ccceb6981c6e72 100644 |
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp |
@@ -1465,7 +1465,7 @@ void ThreadState::addInterruptor( |
SafePointScope scope(BlinkGC::HeapPointersOnStack); |
{ |
MutexLocker locker(m_heap->threadAttachMutex()); |
- m_interruptors.append(std::move(interruptor)); |
+ m_interruptors.push_back(std::move(interruptor)); |
} |
} |