On a similiar but slightly unrelated note, on commit 
https://github.com/Gnucash/gnucash/commit/e322457e , under functioninline 
GncRational operator+(GncInt128 a, GncRational b), I think it possibly should 
be 


| - return b + GncRational(a, 1);  |
|

+ return GncRational(a, 1) + b; 

instead of 


| - return b + GncRational(a, 1);  |
|

+ return GncRational(a, 1) + a;
Matt


      From: Robert Fewell <[email protected]>
 To: "[email protected]" <[email protected]> 
 Sent: Tuesday, February 21, 2017 5:18 AM
 Subject: gnc-numeric
   
Hi,

Just built from master with all the new changes but had to change
gnc-numeric.cpp line 86 from isnan(d)  to std::isnan(d), gcc version 4.9.4

After change all built successfully.

Bob
_______________________________________________
gnucash-devel mailing list
[email protected]
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


   
_______________________________________________
gnucash-devel mailing list
[email protected]
https://lists.gnucash.org/mailman/listinfo/gnucash-devel

Reply via email to