id summary reporter owner description type status milestone component version severity resolution keywords cc 12627 export_bits() gives wrong answer on fixed precision type John Galbraith John Maddock "The following minimal working example prints the wrong answer. Compiled on Ubuntu 16.04, and the console prints: {{{ ➜ ~ clang++ -std=c++14 bug.cpp ➜ ~ ./a.out FEDCBA9876543210F1E2D3C4B5A69788 f1e2d3c4b5a69788f1e2d3c4b5a69788 ➜ ~ }}} I think those numbers should be the same, and they are different. It behaves like the low order 64 bits got serialized twice, and the high order 64 bits never got serialized at all. If you change the number type from uint128_t to cpp_int, then the example runs fine which is why I think this problem occurs only with fixed precision types. {{{ #include #include #include #include namespace mp = boost::multiprecision; int main() { mp::uint128_t i = mp::uint128_t(0xFEDCBA9876543210) << 64 | 0xF1E2D3C4B5A69788; std::cout << std::hex << i << std::endl; std::vector v(16); export_bits(i, v.begin(), 8); std::for_each(v.begin(), v.end(), [](std::uint8_t byte) { std::cout << (int)byte; }); std::cout << std::endl; } }}}" Bugs closed To Be Determined multiprecision Boost 1.62.0 Problem fixed