Shopify / liquid-c

Liquid performance extension in C.
MIT License
119 stars 24 forks source link

Fix type of struct value #226

Closed piperswe closed 3 weeks ago

piperswe commented 3 weeks ago

The current type for const_ptr is causing builds with Debian's GCC to fail on 32-bit architectures, because it is being used as VALUE * but is defined as size_t *.

piperswe commented 3 weeks ago

never mind, this might be more complicated than just changing the type. I'll just disable the warning locally.