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
Currently BitStreamReader and BitStreamWriter are using their own BitPosType which is size_t. We should use our BitSize everywhere to ensure the same size of type (size_t is not guaranteed to be the same on all platforms - i.e. on 32-bit it's 32-bit and on 64-bit it's 64-bit).
The text was updated successfully, but these errors were encountered:
Currently
BitStreamReader
andBitStreamWriter
are using their ownBitPosType
which issize_t
. We should use ourBitSize
everywhere to ensure the same size of type (size_t
is not guaranteed to be the same on all platforms - i.e. on 32-bit it's 32-bit and on 64-bit it's 64-bit).The text was updated successfully, but these errors were encountered: