| Index: cc/base/scoped_ptr_vector.h
|
| diff --git a/cc/base/scoped_ptr_vector.h b/cc/base/scoped_ptr_vector.h
|
| index 8cd368d885ce3f72a2b962c06b2958fa4ba05dec..856e2f51cd1f26607a6500401fc08e43cc015093 100644
|
| --- a/cc/base/scoped_ptr_vector.h
|
| +++ b/cc/base/scoped_ptr_vector.h
|
| @@ -72,7 +72,7 @@ class ScopedPtrVector {
|
|
|
| scoped_ptr<T> take(iterator position) {
|
| if (position == end())
|
| - return scoped_ptr<T>(NULL);
|
| + return scoped_ptr<T>();
|
| DCHECK(position < end());
|
|
|
| typename std::vector<T*>::iterator writable_position = position;
|
|
|