| Index: core/src/fxcodec/jbig2/JBig2_Context.cpp | 
| diff --git a/core/src/fxcodec/jbig2/JBig2_Context.cpp b/core/src/fxcodec/jbig2/JBig2_Context.cpp | 
| index 2a28185d88ec10edff3c110e59eb7adee3a28171..9503fed95e1d88281be735b8e37f3effa9e8278a 100644 | 
| --- a/core/src/fxcodec/jbig2/JBig2_Context.cpp | 
| +++ b/core/src/fxcodec/jbig2/JBig2_Context.cpp | 
| @@ -8,6 +8,7 @@ | 
|  | 
| #include <algorithm> | 
| #include <list> | 
| +#include <utility> | 
| #include <vector> | 
|  | 
| #include "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h" | 
| @@ -1119,7 +1120,7 @@ int32_t CJBig2_Context::parseGenericRegion(CJBig2_Segment* pSegment, | 
| } | 
| } | 
| pGRD->USESKIP = 0; | 
| -    m_pGRD = nonstd::move(pGRD); | 
| +    m_pGRD = std::move(pGRD); | 
| } | 
| pSegment->m_nResultType = JBIG2_IMAGE_POINTER; | 
| if (m_pGRD->MMR == 0) { | 
|  |