mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-12-17 02:13:41 +00:00
refactor: simplify sources processing
This commit is contained in:
@ -145,7 +145,7 @@ private:
|
||||
}
|
||||
|
||||
// sort items
|
||||
std::sort(items.begin(), items.end(), [](auto *lhs, auto *rhs) { return lhs->number() < rhs->number(); });
|
||||
std::sort(items.begin(), items.end(), [](auto lhs, auto rhs) { return lhs->number() < rhs->number(); });
|
||||
return items;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user