Index: xfa/fxbarcode/BC_Utils.cpp |
diff --git a/xfa/fxbarcode/BC_Utils.cpp b/xfa/fxbarcode/BC_Utils.cpp |
index 807b04861d20e545732b7c2748f49ae37d7969d1..5d881c7be16c4072a3b9b7da7d3f7e49563d2c0b 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]; |
} |