removed LZ4_stream_t alignment test on Visual
authorYann Collet <cyan@fb.com>
Mon, 8 Apr 2019 23:47:21 +0000 (16:47 -0700)
committerYann Collet <cyan@fb.com>
Mon, 8 Apr 2019 23:47:21 +0000 (16:47 -0700)
commit111df0fa45729538cc8ec526c71e854d0f15dc2e
tree2c74da9d82a13a8b9f73dd1d2bac7a4116549023
parentda19cc79da6eb7aba915e6deae57ca5c7ac6930f
removed LZ4_stream_t alignment test on Visual

it fails on x86 32-bit mode :
Visual reports an alignment of 8-bytes (even with alignof())
but actually only align LZ4_stream_t on 4 bytes.
The alignment check then fails, resulting in missed initialization.
lib/lz4.c