File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
modules/wechat_qrcode/src/zxing/common Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ UnicomBlock::~UnicomBlock() {}
16
16
17
17
void UnicomBlock::Init () {
18
18
if (m_bInit) return ;
19
- m_vcIndex = std::vector<unsigned short >(m_iHeight * m_iWidth, 0 );
20
- m_vcCount = std::vector<unsigned short >(m_iHeight * m_iWidth, 0 );
19
+ m_vcIndex = std::vector<unsigned int >(m_iHeight * m_iWidth, 0 );
20
+ m_vcCount = std::vector<unsigned int >(m_iHeight * m_iWidth, 0 );
21
21
m_vcMinPnt = std::vector<int >(m_iHeight * m_iWidth, 0 );
22
22
m_vcMaxPnt = std::vector<int >(m_iHeight * m_iWidth, 0 );
23
23
m_vcQueue = std::vector<int >(m_iHeight * m_iWidth, 0 );
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ class UnicomBlock : public Counted {
32
32
int m_iHeight;
33
33
int m_iWidth;
34
34
35
- unsigned short m_iNowIdx;
35
+ unsigned int m_iNowIdx;
36
36
bool m_bInit;
37
- std::vector<unsigned short > m_vcIndex;
38
- std::vector<unsigned short > m_vcCount;
37
+ std::vector<unsigned int > m_vcIndex;
38
+ std::vector<unsigned int > m_vcCount;
39
39
std::vector<int > m_vcMinPnt;
40
40
std::vector<int > m_vcMaxPnt;
41
41
std::vector<int > m_vcQueue;
You can’t perform that action at this time.
0 commit comments