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
[sdf] fix array-bounds warning on GCC 13 for predicateLibrary.h
Replace std::vector<bool> with std::vector<uint8_t> for boundArgs.
The vector<bool> bit-packing specialisation triggers -Warray-bounds and
-Wstringop-overflow when its word-level memmove is inlined into
_TryBindArgs; uint8_t uses the standard path GCC analyzes correctly.
0 commit comments