Skip to content

Commit 5adb334

Browse files
authored
Merge pull request #225 from stratakis/fix_x86_64_gcc_16_build
Fix GCC 16 LTO build failure with multi-target dispatch
2 parents 14d7480 + 4273453 commit 5adb334

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xss-common-comparators.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ struct Comparator {
4040
using opmask_t = typename vtype::opmask_t;
4141
using type_t = typename vtype::type_t;
4242

43-
X86_SIMD_SORT_FINLINE bool STDSortComparator(const type_t &a,
44-
const type_t &b)
43+
X86_SIMD_SORT_INLINE bool STDSortComparator(const type_t &a,
44+
const type_t &b)
4545
{
4646
if constexpr (descend) { return comparison_func<vtype>(b, a); }
4747
else {

0 commit comments

Comments
 (0)