summaryrefslogtreecommitdiff
path: root/xfa/fxbarcode/BC_Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxbarcode/BC_Utils.cpp')
-rw-r--r--xfa/fxbarcode/BC_Utils.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fxbarcode/BC_Utils.cpp b/xfa/fxbarcode/BC_Utils.cpp
index 807b04861d..5d881c7be1 100644
--- a/xfa/fxbarcode/BC_Utils.cpp
+++ b/xfa/fxbarcode/BC_Utils.cpp
@@ -26,7 +26,8 @@ void BC_FX_ByteString_Append(CFX_ByteString& dst, int32_t count, FX_CHAR c) {
dst += c;
}
}
-void BC_FX_ByteString_Append(CFX_ByteString& dst, const CFX_ByteArray& ba) {
+void BC_FX_ByteString_Append(CFX_ByteString& dst,
+ const CFX_ArrayTemplate<uint8_t>& ba) {
for (int32_t i = 0; i < ba.GetSize(); i++) {
dst += ba[i];
}