| Index: cc/base/list_container.h
|
| diff --git a/cc/base/list_container.h b/cc/base/list_container.h
|
| index ec9c62dce52a7838bace6307cc0cdb3757a1a0e3..5d0f48d354f50e6870d24ae8fa66fe77efc2bc59 100644
|
| --- a/cc/base/list_container.h
|
| +++ b/cc/base/list_container.h
|
| @@ -135,7 +135,7 @@ class ListContainer {
|
| helper_.InsertBeforeAndInvalidateAllPointers(&at, count);
|
| Iterator result = at;
|
| for (size_t i = 0; i < count; ++i) {
|
| - new (*at) DerivedElementType();
|
| + new (at.item_iterator) DerivedElementType();
|
| ++at;
|
| }
|
| return result;
|
|
|