Merge pull request #1489 from andreas-schwab/develop

Do proper endian conversions
This commit is contained in:
Niels Lohmann 2019-03-13 11:57:58 +01:00 committed by GitHub
commit c6fc902184
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 7 deletions

View file

@ -1853,7 +1853,7 @@ class binary_reader
}
// reverse byte order prior to conversion if necessary
if (is_little_endian && !InputIsLittleEndian)
if (is_little_endian != InputIsLittleEndian)
{
vec[sizeof(NumberType) - i - 1] = static_cast<uint8_t>(current);
}