This commit is contained in:
Jan Dupej 2024-10-02 16:12:05 +02:00
Родитель 82aefc3993
Коммит 7227944779
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -4,6 +4,7 @@
#include <bond/stream/output_buffer.h>
#include <boost/multiprecision/miller_rabin.hpp>
#include <boost/random.hpp>
using namespace examples::multiprecision;

Просмотреть файл

@ -75,7 +75,7 @@ namespace bond
// Bond expects that blob with default value is empty
return 0;
else
return num.backend().size() * sizeof(limb_type);
return static_cast<uint32_t>(num.backend().size() * sizeof(limb_type));
}