mirror of https://github.com/PrimeDecomp/prime.git
Add dummy rstl::sort impl for host compiler
This commit is contained in:
parent
b9f422978b
commit
6dfea164ed
|
@ -14,11 +14,13 @@
|
||||||
#include "dolphin/os.h"
|
#include "dolphin/os.h"
|
||||||
|
|
||||||
namespace rstl {
|
namespace rstl {
|
||||||
// template < class It, class Cmp >
|
#ifndef __MWERKS__
|
||||||
// void sort(It first, It last, Cmp cmp) {
|
template < class It, class Cmp >
|
||||||
// // TODO: proper implementation
|
void sort(It first, It last, Cmp cmp) {
|
||||||
// cmp(*first, *last);
|
// TODO: proper implementation
|
||||||
// }
|
cmp(*first, *last);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
} // namespace rstl
|
} // namespace rstl
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
Loading…
Reference in New Issue