Tencent / rapidjson

A fast JSON parser/generator for C++ with both SAX/DOM style API
http://rapidjson.org/
Other
14k stars 3.5k forks source link

Add two type conversions in bigintegertest.cpp #2265

Open EstherWx opened 4 months ago

EstherWx commented 4 months ago

BigInteger& operator*= has two implementations, one for uint64_t, another for uint32_t.

Ambiguous overload occured in bigintegertest.cpp because the type of *= right value is not specified. Add two type conversions for the two values.