1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-15 14:27:06 +01:00

Fixing a compilation error on some gcc compiler versions

This commit is contained in:
Guido Cossu
2016-12-09 02:46:40 +00:00
parent 9977c53035
commit 4c11e36d3d

View File

@ -133,7 +133,8 @@ class ReproducibilityState {
std::cout << "Saved state " << std::endl; show_binaryrep(repr.th_states[repr.n_call][thread]);
std::cout << "Current state" << std::endl; show_binaryrep(sumarray[thread]);
std::cout << "XOR result" << std::endl; show_binaryrep(xors, words);
std::cout << std::defaultfloat;
//std::cout << std::defaultfloat; //not supported by some compilers
std::cout << std::setprecision(6);
repr.success = false;
}
}