mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
Fix build error caused by changed digest signature in boost
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
committed by
Konstantin Pastbin
parent
27ae78120b
commit
0dfec1b28f
@@ -19,7 +19,7 @@ namespace
|
|||||||
{
|
{
|
||||||
SHA1::Hash ExtractHash(boost::uuids::detail::sha1 & sha1)
|
SHA1::Hash ExtractHash(boost::uuids::detail::sha1 & sha1)
|
||||||
{
|
{
|
||||||
uint32_t digest[5];
|
boost::uuids::detail::sha1::digest_type digest;
|
||||||
sha1.get_digest(digest);
|
sha1.get_digest(digest);
|
||||||
for (auto & b : digest)
|
for (auto & b : digest)
|
||||||
b = boost::core::byteswap(b);
|
b = boost::core::byteswap(b);
|
||||||
|
|||||||
Reference in New Issue
Block a user