mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
[orbis-kernel] Implement utils::kstring
This commit is contained in:
parent
932bb30e79
commit
0d7b090032
7 changed files with 18 additions and 15 deletions
|
|
@ -1,4 +1,5 @@
|
|||
#include "module/Module.hpp"
|
||||
#include "KernelAllocator.hpp"
|
||||
#include "thread.hpp"
|
||||
#include <utility>
|
||||
|
||||
|
|
@ -108,7 +109,7 @@ static orbis::SysResult doRelocation(orbis::Process *process,
|
|||
return std::pair(defModule.get(), defSym.address);
|
||||
}
|
||||
|
||||
foundInLibs.push_back(defLib.name);
|
||||
foundInLibs.emplace_back(std::string_view(defLib.name));
|
||||
}
|
||||
|
||||
for (auto nsDefModule : defModule->namespaceModules) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue