We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b55c9 commit a3d52c7Copy full SHA for a3d52c7
include/rapidjson/internal/biginteger.h
@@ -222,7 +222,7 @@ class BigInteger {
222
bool IsZero() const { return count_ == 1 && digits_[0] == 0; }
223
224
private:
225
- template<typename Ch = char>
+ template<typename Ch>
226
void AppendDecimal64(const Ch* begin, const Ch* end) {
227
uint64_t u = ParseUint64(begin, end);
228
if (IsZero())
@@ -238,7 +238,7 @@ class BigInteger {
238
digits_[count_++] = digit;
239
}
240
241
242
static uint64_t ParseUint64(const Ch* begin, const Ch* end) {
243
uint64_t r = 0;
244
for (const Ch* p = begin; p != end; ++p) {
0 commit comments