is there a floating point data type in Visual C++ that has enough precision in the mantissa to hold an INT64?
Example it should be possible to do the following:
__int64 from = 0xFFFFFFFFFFFFFFFF;
mightyFP intermediate;
__int64 to;
intermediate = from;
to = intermediate;
assert(from == to);
where mightyFP is the unknown type that I search.
regards, Tobias