diff options
Diffstat (limited to 'xfa/fxbarcode/utils.h')
-rw-r--r-- | xfa/fxbarcode/utils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxbarcode/utils.h b/xfa/fxbarcode/utils.h index 21ef3830ef..93a3c576cb 100644 --- a/xfa/fxbarcode/utils.h +++ b/xfa/fxbarcode/utils.h @@ -7,6 +7,8 @@ #ifndef XFA_FXBARCODE_UTILS_H_ #define XFA_FXBARCODE_UTILS_H_ +#include <vector> + #include "core/fxcrt/fx_basic.h" bool BC_FX_ByteString_Replace(CFX_ByteString& dst, @@ -16,7 +18,7 @@ bool BC_FX_ByteString_Replace(CFX_ByteString& dst, char c); void BC_FX_ByteString_Append(CFX_ByteString& dst, int32_t count, char c); void BC_FX_ByteString_Append(CFX_ByteString& dst, - const CFX_ArrayTemplate<uint8_t>& ba); + const std::vector<uint8_t>& ba); #if (_FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_) #include <limits> |