Index: src/list-inl.h |
diff --git a/src/list-inl.h b/src/list-inl.h |
index 4a18d98205168837a9a03d8077151b5e2fe23a58..c8b7410bbc4b19f342318e402cc2cd6c57ddc960 100644 |
--- a/src/list-inl.h |
+++ b/src/list-inl.h |
@@ -65,7 +65,7 @@ template<typename T, class P> |
void List<T, P>::Resize(int new_capacity, P alloc) { |
ASSERT_LE(length_, new_capacity); |
T* new_data = NewData(new_capacity, alloc); |
- OS::MemCopy(new_data, data_, length_ * sizeof(T)); |
+ MemCopy(new_data, data_, length_ * sizeof(T)); |
List<T, P>::DeleteData(data_); |
data_ = new_data; |
capacity_ = new_capacity; |