| Index: xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h | 
| diff --git a/xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h b/xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h | 
| index 64d02886f7641138efa22584d3c0cb7886826fe4..36a7ab2615c3939040c352cca140db9b0e6f2b13 100644 | 
| --- a/xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h | 
| +++ b/xfa/fxbarcode/datamatrix/BC_DefaultPlacement.h | 
| @@ -18,7 +18,7 @@ class CBC_DefaultPlacement { | 
|  | 
| int32_t getNumrows(); | 
| int32_t getNumcols(); | 
| -  CFX_ByteArray& getBits(); | 
| +  CFX_ArrayTemplate<uint8_t>& getBits(); | 
| bool getBit(int32_t col, int32_t row); | 
| void setBit(int32_t col, int32_t row, bool bit); | 
| bool hasBit(int32_t col, int32_t row); | 
| @@ -28,7 +28,7 @@ class CBC_DefaultPlacement { | 
| CFX_WideString m_codewords; | 
| int32_t m_numrows; | 
| int32_t m_numcols; | 
| -  CFX_ByteArray m_bits; | 
| +  CFX_ArrayTemplate<uint8_t> m_bits; | 
| void module(int32_t row, int32_t col, int32_t pos, int32_t bit); | 
| void utah(int32_t row, int32_t col, int32_t pos); | 
| void corner1(int32_t pos); | 
|  |