mirror of https://github.com/procxx/kepka.git
Fix error c2100 invalid inderection against visual c++ 19.12 (visual studio 15.5)
This commit is contained in:
parent
badbf7a900
commit
0c4f569f65
|
@ -250,7 +250,7 @@ void PeerListBox::peerListSetSearchMode(PeerListSearchMode mode) {
|
||||||
|
|
||||||
void PeerListBox::peerListSortRows(base::lambda<bool(PeerListRow &a, PeerListRow &b)> compare) {
|
void PeerListBox::peerListSortRows(base::lambda<bool(PeerListRow &a, PeerListRow &b)> compare) {
|
||||||
_inner->reorderRows([compare = std::move(compare)](auto &&begin, auto &&end) {
|
_inner->reorderRows([compare = std::move(compare)](auto &&begin, auto &&end) {
|
||||||
std::sort(begin, end, [&compare](auto &&a, auto &&b) {
|
std::sort(begin, end, [compare](auto &&a, auto &&b) {
|
||||||
return compare(*a, *b);
|
return compare(*a, *b);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -258,7 +258,7 @@ void PeerListBox::peerListSortRows(base::lambda<bool(PeerListRow &a, PeerListRow
|
||||||
|
|
||||||
void PeerListBox::peerListPartitionRows(base::lambda<bool(PeerListRow &a)> border) {
|
void PeerListBox::peerListPartitionRows(base::lambda<bool(PeerListRow &a)> border) {
|
||||||
_inner->reorderRows([border = std::move(border)](auto &&begin, auto &&end) {
|
_inner->reorderRows([border = std::move(border)](auto &&begin, auto &&end) {
|
||||||
std::stable_partition(begin, end, [&border](auto &¤t) {
|
std::stable_partition(begin, end, [border](auto &¤t) {
|
||||||
return border(*current);
|
return border(*current);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue