Fix random number generation.
This commit is contained in:
Родитель
82aefc3993
Коммит
7227944779
|
@ -4,6 +4,7 @@
|
||||||
#include <bond/stream/output_buffer.h>
|
#include <bond/stream/output_buffer.h>
|
||||||
|
|
||||||
#include <boost/multiprecision/miller_rabin.hpp>
|
#include <boost/multiprecision/miller_rabin.hpp>
|
||||||
|
#include <boost/random.hpp>
|
||||||
|
|
||||||
using namespace examples::multiprecision;
|
using namespace examples::multiprecision;
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@ namespace bond
|
||||||
// Bond expects that blob with default value is empty
|
// Bond expects that blob with default value is empty
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
return num.backend().size() * sizeof(limb_type);
|
return static_cast<uint32_t>(num.backend().size() * sizeof(limb_type));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче