diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-08-23 17:38:26 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-23 17:38:26 +0000 |
commit | 7aa4bc461a171cc2b5a27490a55f0baedd6623fb (patch) | |
tree | f12a7b8e5d444a2980a1fca469cb85350794b635 /fxbarcode/pdf417/BC_PDF417Writer.h | |
parent | 85e622ce52eb3864e94d0fa387af39fc6993bacf (diff) | |
download | pdfium-7aa4bc461a171cc2b5a27490a55f0baedd6623fb.tar.xz |
Remove m_bTruncated flag from CBC_PDF417Writer.
The flag is unused.
Change-Id: I15eb3e20e6a632ae2aa2afc19cb09d2402e607e0
Reviewed-on: https://pdfium-review.googlesource.com/41031
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417Writer.h')
-rw-r--r-- | fxbarcode/pdf417/BC_PDF417Writer.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417Writer.h b/fxbarcode/pdf417/BC_PDF417Writer.h index 1bb3a27d06..05e85c77a9 100644 --- a/fxbarcode/pdf417/BC_PDF417Writer.h +++ b/fxbarcode/pdf417/BC_PDF417Writer.h @@ -25,13 +25,10 @@ class CBC_PDF417Writer : public CBC_TwoDimWriter { // CBC_TwoDimWriter bool SetErrorCorrectionLevel(int32_t level) override; - void SetTruncated(bool truncated); - private: void rotateArray(std::vector<uint8_t>& bitarray, int32_t width, int32_t height); - bool m_bTruncated; }; #endif // FXBARCODE_PDF417_BC_PDF417WRITER_H_ |