From 3b45012d57884b06915eb5a1f54fbba04a45e807 Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Thu, 23 Aug 2018 20:47:16 +0000 Subject: Remove CBC_BarcodeMatrix::m_matrixOut and just return the bit array. Change-Id: I12893784321f92e5cac2b80653897007b6e63c7e Reviewed-on: https://pdfium-review.googlesource.com/41111 Commit-Queue: Henrique Nakashima Reviewed-by: Lei Zhang --- fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h') diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h index 1359ac2e63..60978391cb 100644 --- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h +++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h @@ -20,11 +20,10 @@ class CBC_BarcodeMatrix { CBC_BarcodeRow* getRow(size_t row) const { return m_matrix[row].get(); } size_t getWidth() const { return m_width; } size_t getHeight() const { return m_height; } - std::vector& getMatrix(); + std::vector toBitArray(); private: std::vector> m_matrix; - std::vector m_matrixOut; size_t m_width; size_t m_height; }; -- cgit v1.2.3