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
Encountered this when attempting to build with GCC 13.2.0. The generic AlignmentAllocator<T, N> is fine, but the specific instantiation for N = 1 is missing the rebind. Easy fix.
The text was updated successfully, but these errors were encountered:
mgoodson-cvd
added a commit
to mgoodson-cvd/levenshtein-sse
that referenced
this issue
Mar 11, 2024
Add missing `rebind` implementation for the instantiation of
`AlignmentAllocator<T,N>` with `N=1`.
This was causing a compiler error in gcc 13.2.
See addaleax#6. Closesaddaleax#6.
Encountered this when attempting to build with GCC 13.2.0. The generic
AlignmentAllocator<T, N>
is fine, but the specific instantiation for N = 1 is missing therebind
. Easy fix.The text was updated successfully, but these errors were encountered: