This commit is contained in:
Milo Yip 2016-02-10 11:36:23 +08:00
parent 935e2ef7ed
commit 7e383864c7

View File

@ -41,7 +41,7 @@ RAPIDJSON_DIAG_OFF(padded)
#endif
struct DiyFp {
DiyFp() {}
DiyFp() : f(), e() {}
DiyFp(uint64_t fp, int exp) : f(fp), e(exp) {}