DiyFp: avoid shadowing (closes #195)

This commit is contained in:
Philipp A. Hartmann 2014-11-17 13:31:24 +01:00
parent 6b69662ce8
commit c88cc331d5

View File

@ -45,7 +45,7 @@ RAPIDJSON_DIAG_OFF(effc++)
struct DiyFp {
DiyFp() {}
DiyFp(uint64_t f, int e) : f(f), e(e) {}
DiyFp(uint64_t fp, int exp) : f(fp), e(exp) {}
DiyFp(double d) {
union {