1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-16 05:17:39 +08:00

fixed redefinition error on clang with musl

This commit is contained in:
Sergiu Deitsch
2021-10-19 13:18:18 +02:00
parent 012fb2375d
commit b05bd65689

View File

@@ -15,12 +15,6 @@ using zxing::BitArray;
using zxing::ErrorHandler;
using zxing::Ref;
#if __WORDSIZE == 64
// typedef long int int64_t;
#else
typedef long long int int64_t;
#endif
BitArray::BitArray(int size_) : size(size_), bits(size_), nextSets(size_), nextUnSets(size_) {}
void BitArray::setUnchar(int i, unsigned char newBits) { bits[i] = newBits; }