2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Fix -Wconversion warning in from_chars_x86.hpp.

This commit is contained in:
Andrey Semashev
2026-01-09 01:44:11 +03:00
parent 2b229f7449
commit 39946fb660

View File

@@ -9,6 +9,7 @@
#if defined(BOOST_UUID_USE_SSE41)
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <boost/uuid/uuid.hpp>
@@ -478,7 +479,7 @@ const simd_vector128< std::uint8_t > from_chars_simd_constants< T >::mm_2 =
#pragma GCC diagnostic ignored "-Warray-bounds"
#endif
template< typename Char, unsigned int Size = sizeof(Char) >
template< typename Char, std::size_t Size = sizeof(Char) >
struct from_chars_simd_load_traits;
template< typename Char >