Thanks for your suggestion. Anyway, instead of "long long unsigned" I would use "uint64_t", due to portability reasons. "long long" is not valid in MSVC++ world.
You are welcome to provide a patch with the relevant changes. Thanks in advance!
/Adam
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
in the file "error_counters.h" I suggest to modify the line:
00119 double errors;
00120 double corrects;
in :
00119 long long unsigned int errors;
00120 long long unsigned int corrects;
In order to convince the developers community, I attach this simple test code:
bye bye
Guiseppe,
Thanks for your suggestion. Anyway, instead of "long long unsigned" I would use "uint64_t", due to portability reasons. "long long" is not valid in MSVC++ world.
You are welcome to provide a patch with the relevant changes. Thanks in advance!
/Adam