tweak formating

git-svn-id: https://zxing.googlecode.com/svn/trunk@2488 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
smparkes@smparkes.net 2012-10-29 22:33:20 +00:00
parent 036918d4c0
commit 1cb7380961

View file

@ -1,3 +1,4 @@
// -*- mode:c++; tab-width:2; indent-tabs-mode:nil; c-basic-offset:2 -*-
/*
* Decoder.cpp
* zxing
@ -27,13 +28,12 @@
#include <zxing/ReaderException.h>
#include <zxing/common/reedsolomon/ReedSolomonException.h>
namespace zxing {
namespace qrcode {
using namespace std;
using zxing::qrcode::Decoder;
using zxing::DecoderResult;
using zxing::Ref;
Decoder::Decoder() :
rsDecoder_(GenericGF::QR_CODE_FIELD_256) {
rsDecoder_(GenericGF::QR_CODE_FIELD_256) {
}
void Decoder::correctErrors(ArrayRef<unsigned char> codewordBytes, int numDataCodewords) {
@ -98,5 +98,3 @@ Ref<DecoderResult> Decoder::decode(Ref<BitMatrix> bits) {
DecodedBitStreamParser::Hashtable());
}
}
}