Dear All,
I'm not certain if the behavior I'm seeing is expected or a problem.
I'm getting different series of numbers from the two different boost versions in question.
When running a diff on the output I'm getting numbers inserted in one series or the other and then the two series become identical again.
Below is the source.
I'm using the following series of commands:
g++ -std=c++14 test.cpp -g -DNDEBUG -fwhole-program -I/mnt/share/boost/boost-1.80/include -o 180
g++ -std=c++14 test.cpp -g -DNDEBUG -fwhole-program -o 160
./180 16384 2078781393 1 > 180.txt
./160 16384 2078781393 1 > 160.txt
diff 160.txt 180.txt |more
The first difference is at line 284. The next at 364, 1783, 2685.
Peter
PS.
g++ (GCC) 5.3.0
PPS.
The source
#include