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

Workaround is, sadly, still needed for msvc-14.5

This commit is contained in:
Peter Dimov
2025-12-21 21:03:39 +02:00
parent 6180c2600d
commit db6e2c5266

View File

@@ -57,7 +57,7 @@ private:
union
{
#if BOOST_WORKAROUND(BOOST_MSVC, < 1950)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1960)
std::uint8_t repr_[ 16 ] = {};
@@ -97,7 +97,7 @@ public:
// data
#if BOOST_WORKAROUND(BOOST_MSVC, < 1950)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1960)
data_type data;