diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-10 13:52:25 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-10 13:52:25 -0800 |
commit | e238549d212e97fe01dba3740949a98172c21454 (patch) | |
tree | 22fceab5e0a35b6d12a10f0504b0f4065f05b09e /core/include | |
parent | 0db900952c2aa76db801c9198923ce1b3d7c017d (diff) | |
download | pdfium-e238549d212e97fe01dba3740949a98172c21454.tar.xz |
Banish CFX_PtryArray to XFA side only.
The m_Operators array represents a heterogeneous instruction
stream, so leave it as a void* for now.
R=thestig@chromium.org, thestig@chromimum.org
Review URL: https://codereview.chromium.org/1676413002 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxcrt/fx_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h index 7179abef05..95927c38f2 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -436,12 +436,12 @@ class CFX_ArrayTemplate : public CFX_BasicArray { } }; typedef CFX_ArrayTemplate<FX_DWORD> CFX_DWordArray; -typedef CFX_ArrayTemplate<void*> CFX_PtrArray; #ifdef PDF_ENABLE_XFA typedef CFX_ArrayTemplate<FX_WORD> CFX_WordArray; typedef CFX_ArrayTemplate<FX_FLOAT> CFX_FloatArray; typedef CFX_ArrayTemplate<uint8_t> CFX_ByteArray; typedef CFX_ArrayTemplate<int32_t> CFX_Int32Array; +typedef CFX_ArrayTemplate<void*> CFX_PtrArray; #endif // PDF_ENABLE_XFA template <class ObjectClass> |