mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-31 11:41:59 +02:00
Update to v098r10 release.
byuu says: Changelog: - synchronized tomoko, loki, icarus with extensive changes to nall (118KiB diff)
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
namespace nall {
|
||||
|
||||
template<typename T> auto vector<T>::sort(const function<bool (const T& lhs, const T& rhs)>& comparator) -> void {
|
||||
if(!comparator) return nall::sort(_pool, _size, [](const T& lhs, const T& rhs) { return lhs < rhs; });
|
||||
nall::sort(_pool, _size, comparator);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user