27 Sep
2016
27 Sep
'16
1:59 p.m.
On 9/19/2016 1:32 PM, Rene Rivera wrote:
On Mon, Sep 19, 2016 at 7:18 AM, Edward Diener
wrote: I have pushed a fix for this on the 'develop' branch of iostreams. In the fix basically iostreams uses _FPOSOFF for versions of VC++ prior to VC++14 but uses '((long long)(fp))' for VC++14 on up.
That seems like a fragile fix to me. How do you know which version of VC is not going to have that def? Wouldn't it be better to use _FPOSOFF if it's defined, and the cast otherwise? That way whenever the macro goes away it will work, regardless of the specific version when that happens.
I have changed the fix based on your objection above, since I think you are right.