You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the tests in TestMemoryOutStream.cpp are assuming that ULONG_MAX is exactly equal to
4294967295 (0xFFFFFFFF).
This turns out not to be true on Mac OS X compiled for -arch x86_64, where sizeof(long) = 8 and
therefore ULONG_MAX is 18446744073709551615 (0xFFFFFFFFFFFFFFFF).
The simple fix is to replace this file's use of ULONG_MAX with 0xFFFFFFFFUL.