| Index: net/quic/platform/impl/quic_ptr_util_impl.h
|
| diff --git a/net/quic/platform/impl/quic_ptr_util_impl.h b/net/quic/platform/impl/quic_ptr_util_impl.h
|
| index b41ea4ec961940f97231ba80430f05c8bcfc10ba..93fe585a6162ca73e0c7ec2da4f0b9cfc9ad7c3f 100644
|
| --- a/net/quic/platform/impl/quic_ptr_util_impl.h
|
| +++ b/net/quic/platform/impl/quic_ptr_util_impl.h
|
| @@ -10,12 +10,12 @@ namespace net {
|
|
|
| template <typename T, typename... Args>
|
| std::unique_ptr<T> QuicMakeUniqueImpl(Args&&... args) {
|
| - return std::move(base::MakeUnique<T>(std::forward<Args>(args)...));
|
| + return base::MakeUnique<T>(std::forward<Args>(args)...);
|
| }
|
|
|
| template <typename T>
|
| std::unique_ptr<T> QuicWrapUniqueImpl(T* ptr) {
|
| - return std::move(base::WrapUnique<T>(ptr));
|
| + return base::WrapUnique<T>(ptr);
|
| }
|
|
|
| } // namespace net
|
|
|