Add dummy rstl::sort impl for host compiler

Former-commit-id: 6dfea164edfb25d6e13f065709c1076a5d45c3a2
This commit is contained in:
Henrique Gemignani Passos Lima 2022-11-03 12:52:16 +02:00
parent 6d7d4674a3
commit 2dc0b02295

View File

@ -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 {