| Index: third_party/WebKit/Source/platform/PODRedBlackTree.h
|
| diff --git a/third_party/WebKit/Source/platform/PODRedBlackTree.h b/third_party/WebKit/Source/platform/PODRedBlackTree.h
|
| index 0edbe96dcd8ca0e1eca4106c3cf2b50a91a5727c..fe71ae10ecbdb7f9dd544ff570904d362ca3f001 100644
|
| --- a/third_party/WebKit/Source/platform/PODRedBlackTree.h
|
| +++ b/third_party/WebKit/Source/platform/PODRedBlackTree.h
|
| @@ -138,7 +138,7 @@ class PODRedBlackTree {
|
| // Constructs a new red-black tree, allocating temporary objects
|
| // from the given PODArena.
|
| explicit PODRedBlackTree(PassRefPtr<PODFreeListArena<Node>> arena)
|
| - : arena_(arena),
|
| + : arena_(std::move(arena)),
|
| root_(0),
|
| needs_full_ordering_comparisons_(false)
|
| #ifndef NDEBUG
|
|
|