diff options
Diffstat (limited to 'base/memory/scoped_vector.h')
-rw-r--r-- | base/memory/scoped_vector.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/memory/scoped_vector.h b/base/memory/scoped_vector.h index e1e5c72..250947f 100644 --- a/base/memory/scoped_vector.h +++ b/base/memory/scoped_vector.h @@ -15,6 +15,9 @@ // ScopedVector wraps a vector deleting the elements from its // destructor. +// +// TODO(http://crbug.com/554289): DEPRECATED: Use std::vector instead (now that +// we have support for moveable types inside containers). template <class T> class ScopedVector { MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector, RValue) |