mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
[cpp] Removed a const qualifier that was generating a warning with clang
git-svn-id: https://zxing.googlecode.com/svn/trunk@1730 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
a8d169d789
commit
7b4f5b86ef
|
@ -82,7 +82,7 @@ namespace zxing {
|
|||
};
|
||||
|
||||
|
||||
const int UPCEANReader::getMIDDLE_PATTERN_LEN() {
|
||||
int UPCEANReader::getMIDDLE_PATTERN_LEN() {
|
||||
return MIDDLE_PATTERN_LEN;
|
||||
}
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ namespace zxing {
|
|||
static bool findGuardPattern(Ref<BitArray> row, int rowOffset, bool whiteFirst,
|
||||
const int pattern[], int patternLen, int* start, int* end);
|
||||
|
||||
virtual const int getMIDDLE_PATTERN_LEN();
|
||||
virtual int getMIDDLE_PATTERN_LEN();
|
||||
virtual const int* getMIDDLE_PATTERN();
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue