[DEV] continue removing STL
This commit is contained in:
parent
c171d4a035
commit
024d00adff
@ -6,8 +6,9 @@
|
||||
#pragma once
|
||||
|
||||
#include <elog/log.hpp>
|
||||
#include <cassert>
|
||||
|
||||
extern "C" {
|
||||
#include <assert.h>
|
||||
}
|
||||
namespace appl {
|
||||
/**
|
||||
* @brief Get local id of the library
|
||||
|
@ -41,7 +41,7 @@ class MainApplication : public ewol::context::Application {
|
||||
etk::FSNode elem(tmpppp);
|
||||
if (elem.getNodeType() == etk::typeNode_folder) {
|
||||
etk::Vector<etk::String> tmp = elem.folderGetSub(false, true, ".*");
|
||||
std::sort(tmp.begin(), tmp.end());
|
||||
tmp.sort(0, tmp.size(), [](const etk::String& _left, const etk::String& _right) { return _left < _right;});
|
||||
for (auto &it : tmp) {
|
||||
m_listFiles.pushBack(it);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user