mirror of https://github.com/status-im/qzxing.git
fix warning of uninitialized values on Pair
This commit is contained in:
parent
ca094ee403
commit
ea5b87bb0f
|
@ -5,7 +5,7 @@ namespace oned {
|
|||
namespace rss {
|
||||
|
||||
Pair::Pair(int value, int checksumPortion, FinderPattern finderPattern)
|
||||
: DataCharacter (value, checksumPortion), m_finderPattern(finderPattern)
|
||||
: DataCharacter (value, checksumPortion), m_finderPattern(finderPattern), m_count(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue