mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Issue 161
git-svn-id: https://zxing.googlecode.com/svn/trunk@896 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d4e82758eb
commit
086cdca094
|
@ -53,6 +53,7 @@ namespace reedsolomon {
|
||||||
if (x >= 0x100) {
|
if (x >= 0x100) {
|
||||||
x ^= primitive;
|
x ^= primitive;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// log(0) == 0, but should never be used
|
// log(0) == 0, but should never be used
|
||||||
log_[0] = 0;
|
log_[0] = 0;
|
||||||
|
@ -60,7 +61,6 @@ namespace reedsolomon {
|
||||||
log_[exp_[i]] = i;
|
log_[exp_[i]] = i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Ref<GF256Poly> GF256::getZero() {
|
Ref<GF256Poly> GF256::getZero() {
|
||||||
return zero_;
|
return zero_;
|
||||||
|
|
Loading…
Reference in a new issue