[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:
rpechayr 2011-03-29 11:40:25 +00:00
parent a8d169d789
commit 7b4f5b86ef
2 changed files with 2 additions and 2 deletions

View file

@ -82,7 +82,7 @@ namespace zxing {
};
const int UPCEANReader::getMIDDLE_PATTERN_LEN() {
int UPCEANReader::getMIDDLE_PATTERN_LEN() {
return MIDDLE_PATTERN_LEN;
}

View file

@ -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: