Add safety assertion

This commit is contained in:
Ion Gaztañaga
2016-06-25 11:05:07 +02:00
parent 153fd7f474
commit 2a04243de7

View File

@@ -234,6 +234,7 @@ class basic_string_base
//Access and copy (to avoid UB) the first byte of the union to know if the
//active representation is short or long
short_header hdr;
BOOST_STATIC_ASSERT((sizeof(short_header) == 1));
*(unsigned char*)&hdr = *(unsigned char*)&this->members_.m_repr;
return hdr.is_short != 0;
}