diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-08-22 22:26:06 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-22 22:26:06 +0000 |
commit | 98982a8aacd93769162e567cdc129a598bcbe8d9 (patch) | |
tree | 5f5f0b4e63914960d08093371c92b986272f18fc /fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp | |
parent | 81e0830e67344ffd7c7eb98055c892fb748db5c4 (diff) | |
download | pdfium-98982a8aacd93769162e567cdc129a598bcbe8d9.tar.xz |
Remove m_currentRow from the state of CBC_BarcodeMatrix.
Change-Id: I2003d32f3f6972c0102b37ad545316a76b09fd1f
Reviewed-on: https://pdfium-review.googlesource.com/41030
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp')
-rw-r--r-- | fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp index 7fb1259154..32db82e3d4 100644 --- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp +++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.cpp @@ -33,10 +33,6 @@ CBC_BarcodeMatrix::CBC_BarcodeMatrix(size_t height, size_t width) CBC_BarcodeMatrix::~CBC_BarcodeMatrix() {} -void CBC_BarcodeMatrix::nextRow() { - ++m_currentRow; -} - std::vector<uint8_t>& CBC_BarcodeMatrix::getMatrix() { m_matrixOut.resize(m_width * m_height); for (size_t i = 0; i < m_height; ++i) { |