update tracy from 11.0 to 13.1 and fix build with tracy enabled

This commit is contained in:
Sven Balzer
2026-05-01 18:24:04 +02:00
parent 7fa5294e02
commit 2adf75973a
304 changed files with 20579 additions and 170182 deletions
+3 -3
View File
@@ -102,10 +102,10 @@ public:
const auto se = sb + sortedEnd;
const auto sl = se - 1;
const auto ue = v.end();
#ifdef NO_PARALLEL_SORT
pdqsort_branchless( se, ue, comp );
#ifdef __EMSCRIPTEN__
pdqsort_branchless( sb, se, comp );
#else
std::sort( std::execution::par_unseq, se, ue, comp );
ppqsort::sort( ppqsort::execution::par, sb, se, comp );
#endif
const auto ss = std::lower_bound( sb, se, *se, comp );
const auto uu = std::lower_bound( se, ue, *sl, comp );