all: bump version; cleanups

This commit is contained in:
Markus F.X.J. Oberhumer
2023-05-28 14:06:11 +02:00
parent efeffc6e01
commit dae45ae0d4
19 changed files with 202 additions and 202 deletions
+1 -1
View File
@@ -322,7 +322,7 @@ struct TestSortAllPermutations {
memcpy(a, perm, sizeof(*a) * n);
upx_stable_sort(a, n, sizeof(*a), le16_compare);
for (size_t i = 0; i < n; i++)
CHECK((a[i] == 255 + i));
assert((a[i] == 255 + i));
num_perms += 1;
} while (std::next_permutation(perm, perm + n));
return num_perms;