diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-09 09:55:54 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-09 09:55:54 -0800 |
commit | 11d93559cea7a0894e05249e7dac2035ad79994e (patch) | |
tree | 801b9cd68ffef73b861708759c0304097a384fa4 /core/include | |
parent | 56cf589f6ecc85a84c183956bdcb071ec16567d9 (diff) | |
download | pdfium-11d93559cea7a0894e05249e7dac2035ad79994e.tar.xz |
Banish CFX_WordArray to XFA-land.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1676913004 .
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 449889efa0..7179abef05 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -435,10 +435,10 @@ class CFX_ArrayTemplate : public CFX_BasicArray { return -1; } }; -typedef CFX_ArrayTemplate<FX_WORD> CFX_WordArray; 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; |