mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
update for xcode 4.6 warnings. Closes 1494
git-svn-id: https://zxing.googlecode.com/svn/trunk@2566 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
cf69a3f6db
commit
c55079baf7
|
@ -30,7 +30,6 @@ namespace zxing {
|
|||
class BinaryBitmap : public Counted {
|
||||
private:
|
||||
Ref<Binarizer> binarizer_;
|
||||
int cached_y_;
|
||||
|
||||
public:
|
||||
BinaryBitmap(Ref<Binarizer> binarizer);
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace zxing {
|
|||
// greyData correctly, which does not get rotated.
|
||||
GreyscaleRotatedLuminanceSource::GreyscaleRotatedLuminanceSource(unsigned char* greyData,
|
||||
int dataWidth, int dataHeight, int left, int top, int width, int height) : greyData_(greyData),
|
||||
dataWidth_(dataWidth), dataHeight_(dataHeight), left_(left), top_(top), width_(width),
|
||||
dataWidth_(dataWidth), left_(left), top_(top), width_(width),
|
||||
height_(height) {
|
||||
|
||||
// Intentionally comparing to the opposite dimension since we're rotated.
|
||||
|
|
|
@ -28,7 +28,6 @@ class GreyscaleRotatedLuminanceSource : public LuminanceSource {
|
|||
private:
|
||||
unsigned char* greyData_;
|
||||
int dataWidth_;
|
||||
int dataHeight_;
|
||||
int left_;
|
||||
int top_;
|
||||
int width_;
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace {
|
|||
}
|
||||
|
||||
HybridBinarizer::HybridBinarizer(Ref<LuminanceSource> source) :
|
||||
GlobalHistogramBinarizer(source), matrix_(NULL), cached_row_(NULL), cached_row_num_(-1) {
|
||||
GlobalHistogramBinarizer(source), matrix_(NULL), cached_row_(NULL) {
|
||||
}
|
||||
|
||||
HybridBinarizer::~HybridBinarizer() {
|
||||
|
|
|
@ -32,7 +32,6 @@ namespace zxing {
|
|||
private:
|
||||
Ref<BitMatrix> matrix_;
|
||||
Ref<BitArray> cached_row_;
|
||||
int cached_row_num_;
|
||||
|
||||
public:
|
||||
HybridBinarizer(Ref<LuminanceSource> source);
|
||||
|
|
|
@ -41,7 +41,7 @@ Mode Mode::HANZI(8, 10, 12, 0x0D, "HANZI");
|
|||
|
||||
Mode::Mode(int cbv0_9, int cbv10_26, int cbv27, int bits, char const* name) :
|
||||
characterCountBitsForVersions0To9_(cbv0_9), characterCountBitsForVersions10To26_(cbv10_26),
|
||||
characterCountBitsForVersions27AndHigher_(cbv27), bits_(bits), name_(name) {
|
||||
characterCountBitsForVersions27AndHigher_(cbv27), name_(name) {
|
||||
}
|
||||
|
||||
Mode& Mode::forBits(int bits) {
|
||||
|
|
|
@ -32,7 +32,6 @@ private:
|
|||
int characterCountBitsForVersions0To9_;
|
||||
int characterCountBitsForVersions10To26_;
|
||||
int characterCountBitsForVersions27AndHigher_;
|
||||
int bits_;
|
||||
std::string name_;
|
||||
|
||||
Mode(int cbv0_9, int cbv10_26, int cbv27, int bits, char const* name);
|
||||
|
|
|
@ -357,7 +357,7 @@
|
|||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0450;
|
||||
LastUpgradeCheck = 0460;
|
||||
};
|
||||
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Barcodes" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
|
@ -619,6 +619,7 @@
|
|||
);
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_THUMB_SUPPORT = NO;
|
||||
"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
|
||||
GCC_VERSION = "";
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
@ -677,6 +678,7 @@
|
|||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_THUMB_SUPPORT = NO;
|
||||
"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
|
||||
GCC_VERSION = "";
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
@ -709,6 +711,7 @@
|
|||
);
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_THUMB_SUPPORT = NO;
|
||||
"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
|
||||
GCC_VERSION = "";
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
|
|
Loading…
Reference in a new issue