| Index: third_party/WebKit/Source/wtf/DequeTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/DequeTest.cpp b/third_party/WebKit/Source/wtf/DequeTest.cpp
|
| index 3d0c34c3cd88f0f1d1ad08b5f8c4723370793ad7..7c376a89ae24c68fb1168cf0eb6fe74eb0bef8ad 100644
|
| --- a/third_party/WebKit/Source/wtf/DequeTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/DequeTest.cpp
|
| @@ -557,8 +557,9 @@ class CountCopy final {
|
| };
|
|
|
| TEST(DequeTest, MoveShouldNotMakeCopy) {
|
| - // Because data in inline buffer may be swapped or moved individually, we force the creation of out-of-line buffer
|
| - // so we can make sure there's no element-wise copy/move.
|
| + // Because data in inline buffer may be swapped or moved individually, we
|
| + // force the creation of out-of-line buffer so we can make sure there's no
|
| + // element-wise copy/move.
|
| Deque<CountCopy, 1> deque;
|
| int counter = 0;
|
| deque.append(CountCopy(&counter));
|
|
|