| Index: third_party/WebKit/Source/platform/PODArena.h
|
| diff --git a/third_party/WebKit/Source/platform/PODArena.h b/third_party/WebKit/Source/platform/PODArena.h
|
| index d8ebf83701114a2e7ccfb648e3463338414d9b30..b5600de13c1190a41a1c2b798dd8577851195cd2 100644
|
| --- a/third_party/WebKit/Source/platform/PODArena.h
|
| +++ b/third_party/WebKit/Source/platform/PODArena.h
|
| @@ -81,7 +81,7 @@ public:
|
| // Creates a new PODArena configured with the given Allocator.
|
| static PassRefPtr<PODArena> create(PassRefPtr<Allocator> allocator)
|
| {
|
| - return adoptRef(new PODArena(allocator));
|
| + return adoptRef(new PODArena(std::move(allocator)));
|
| }
|
|
|
| // Allocates an object from the arena.
|
|
|