gnc-numeric

Matthew Forbis matthewdavidforbis1982 at yahoo.com
Tue Feb 21 09:09:51 EST 2017


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 <14ubobit at gmail.com>
 To: "gnucash-devel at gnucash.org" <gnucash-devel at gnucash.org> 
 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
gnucash-devel at gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


   


More information about the gnucash-devel mailing list