mirror of
https://github.com/status-im/qzxing.git
synced 2025-02-21 15:18:14 +00:00
Fix usage of boolean due to definition conflicting with Windows SDK's
This commit is contained in:
parent
39c9b04697
commit
25c1c6b903
@ -18,7 +18,6 @@
|
||||
#include <zxing/ZXing.h>
|
||||
#include <zxing/InvertedLuminanceSource.h>
|
||||
|
||||
using zxing::boolean;
|
||||
using zxing::Ref;
|
||||
using zxing::ArrayRef;
|
||||
using zxing::LuminanceSource;
|
||||
@ -55,7 +54,7 @@ Ref<LuminanceSource> InvertedLuminanceSource::crop(int left, int top, int width,
|
||||
return Ref<LuminanceSource>(new InvertedLuminanceSource(delegate->crop(left, top, width, height)));
|
||||
}
|
||||
|
||||
boolean InvertedLuminanceSource::isRotateSupported() const {
|
||||
zxing::boolean InvertedLuminanceSource::isRotateSupported() const {
|
||||
return delegate->isRotateSupported();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user