Changed windows encoded size to 104

This commit is contained in:
Patrick Niklaus 2016-04-12 13:05:38 +02:00
parent dbd4ecf89b
commit 32a3651231

View File

@ -71,7 +71,7 @@ static_assert(ENCODED_HINT_SIZE / 4 * 3 >= sizeof(Hint),
#else
// PhantomNode is bigger under windows because MSVC does not support bit packing
static_assert(sizeof(Hint) == 72 + 4, "Hint is bigger than expected");
constexpr std::size_t ENCODED_HINT_SIZE = 96;
constexpr std::size_t ENCODED_HINT_SIZE = 104;
static_assert(ENCODED_HINT_SIZE / 4 * 3 >= sizeof(Hint),
"ENCODED_HINT_SIZE does not match size of Hint");
#endif