Previously only 3 digits were valid. Increase it to 5.
Details
Details
Diff Detail
Diff Detail
Event Timeline
lib/Driver/Driver.cpp | ||
---|---|---|
2541 | You don't need a MaxDigits parameter, it's the same as Digits.size(). |
Comment Actions
Thanks Reid. The original idea was to have MaxDigits despite the size of the input array (but bounded by its size). But since there are no other users up to this point, your suggestion seems better, updated the patch to reflect it.
You don't need a MaxDigits parameter, it's the same as Digits.size().