do intermediate step in order to omit "dereferencing type-punned pointer" error

This commit is contained in:
Matthias Loy 2014-08-13 13:20:29 +02:00
parent f97723dbb7
commit 48d9a92a1b

View File

@ -34,7 +34,8 @@ namespace Json {
#define ALIGNAS(byte_alignment)
#endif
static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = {0};
const Value& Value::null = reinterpret_cast<const Value&>(kNull);
const unsigned char& kNullRef = kNull[0];
const Value& Value::null = reinterpret_cast<const Value&>(kNullRef);
const Int Value::minInt = Int(~(UInt(-1) / 2));
const Int Value::maxInt = Int(UInt(-1) / 2);