Fix return type on getMinLength

This commit is contained in:
Tristan Penman 2021-05-20 17:01:37 +10:00
parent 3740dc5166
commit 9183462118

View File

@ -689,7 +689,7 @@ public:
: BasicConstraint(allocFn, freeFn),
m_minLength(0) { }
int64_t getMinLength() const
uint64_t getMinLength() const
{
return m_minLength;
}