mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2026-04-19 00:34:14 +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