summaryrefslogtreecommitdiff
path: root/fxbarcode/datamatrix/BC_ErrorCorrection.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-02-26 21:02:52 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-02-26 21:02:52 +0000
commit0bc02c152bd0c178a5946196e2054a5cdc7650f4 (patch)
tree4a651b86f0d240c4996ea77f041274d241e59c93 /fxbarcode/datamatrix/BC_ErrorCorrection.h
parent611431decd9a5b7dd456355fe763b2dee9c2a1a1 (diff)
downloadpdfium-chromium/3356.tar.xz
Add some more missing consts.chromium/3356
Get things out of the .data section. Change-Id: I375cf00186a3d5d8d10f5d147bd4b692f5db3683 Reviewed-on: https://pdfium-review.googlesource.com/27130 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxbarcode/datamatrix/BC_ErrorCorrection.h')
-rw-r--r--fxbarcode/datamatrix/BC_ErrorCorrection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fxbarcode/datamatrix/BC_ErrorCorrection.h b/fxbarcode/datamatrix/BC_ErrorCorrection.h
index 361b205ef4..ccb83f0b86 100644
--- a/fxbarcode/datamatrix/BC_ErrorCorrection.h
+++ b/fxbarcode/datamatrix/BC_ErrorCorrection.h
@@ -23,11 +23,11 @@ class CBC_ErrorCorrection {
int32_t& e);
private:
- static int32_t MODULO_VALUE;
+ static const int32_t MODULO_VALUE = 0x12D;
+
static int32_t LOG[256];
static int32_t ALOG[256];
- private:
static WideString createECCBlock(WideString codewords,
int32_t numECWords,
int32_t& e);