./vendors/xor_singleheader/include/binaryfusefilter.h:642:51: warning: ISO C++ forbids variable length array [-Wvla]
642 | memset(reverseOrder, 0, sizeof(uint64_t[size]));
|
Standard C++ forbids variable-length arrays; but they're not needed here to begin with---just multiply the size of the element type by the length of the array.
We see the following warning when compiling:
Standard C++ forbids variable-length arrays; but they're not needed here to begin with---just multiply the size of the element type by the length of the array.