Chromium Code Reviews| Index: tests/LayerDrawLooperTest.cpp |
| diff --git a/tests/LayerDrawLooperTest.cpp b/tests/LayerDrawLooperTest.cpp |
| index 391db7ce7f2606280b26a06612e9e1cbfbca6e01..6a5931d012adb86c4f8b61f8f45e3c996c4b2aef 100644 |
| --- a/tests/LayerDrawLooperTest.cpp |
| +++ b/tests/LayerDrawLooperTest.cpp |
| @@ -22,7 +22,7 @@ |
| static SkBitmap make_bm(int w, int h) { |
| SkBitmap bm; |
| bm.allocN32Pixels(w, h); |
| - return bm; |
| + return skstd::move(bm); |
| } |
| // TODO: can this be derived from SkBaseDevice? |