Index: core/src/fxcodec/codec/fx_codec.cpp |
diff --git a/core/src/fxcodec/codec/fx_codec.cpp b/core/src/fxcodec/codec/fx_codec.cpp |
index 5143f76f881b86b4e3481d8e6c4a71dbd9cfc146..f856f439584d4547f3a64aaaaed278891bf72a83 100644 |
--- a/core/src/fxcodec/codec/fx_codec.cpp |
+++ b/core/src/fxcodec/codec/fx_codec.cpp |
@@ -1,4 +1,3 @@ |
- |
// Copyright 2014 PDFium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -8,6 +7,7 @@ |
#include "core/include/fxcodec/fx_codec.h" |
#include <cmath> |
+#include <utility> |
#include "codec_int.h" |
#include "core/include/fxcrt/fx_ext.h" |
@@ -146,7 +146,7 @@ void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) { |
if (!cache->AllocateCache()) |
return; |
- m_pDataCache = nonstd::move(cache); |
+ m_pDataCache = std::move(cache); |
} |
FX_BOOL CCodec_BasicModule::RunLengthEncode(const uint8_t* src_buf, |