Chromium Code Reviews| Index: xfa/fgas/crt/fgas_utils.h |
| diff --git a/xfa/fgas/crt/fgas_utils.h b/xfa/fgas/crt/fgas_utils.h |
| index ebbcf4bd978c1285db93090b8a5f67962086eadc..ab94f6ed40882b5463676e5e54ef6e06ed9b85c5 100644 |
| --- a/xfa/fgas/crt/fgas_utils.h |
| +++ b/xfa/fgas/crt/fgas_utils.h |
| @@ -202,11 +202,12 @@ class CFX_BaseMassArrayImp : public CFX_Target { |
| int32_t iCount = -1); |
| int32_t RemoveLast(int32_t iCount = -1); |
| void RemoveAll(FX_BOOL bLeaveMemory = FALSE); |
| + |
| int32_t m_iChunkSize; |
| int32_t m_iBlockSize; |
| int32_t m_iChunkCount; |
| int32_t m_iBlockCount; |
| - CFX_PtrArray* m_pData; |
| + CFX_ArrayTemplate<void*>* m_pData; |
|
Tom Sepez
2016/04/29 16:03:16
Note: this really does want to be a void*, since i
|
| protected: |
| void Append(int32_t iDstStart, |