Commit c88cc331 authored by Philipp A. Hartmann's avatar Philipp A. Hartmann

DiyFp: avoid shadowing (closes #195)

parent 6b69662c
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment