Comment 1 for bug 519470

Revision history for this message
Seppo Jaakola (seppo-jaakola) wrote :

Problem seems to be in the representation of 64bit constant.
Modifying inc/FinancialTable.h:69, like this:

const INT64 iFinancialOutBasicMax = 9500000000LL;

or, like this:

const INT64 iFinancialOutBasicMax = INT64_C(9500000000);

...makes it possible to build in 32bit platform.
(not sure if it runs, but build completes, at least...)