mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-27 04:59:00 +02:00
cs
This commit is contained in:
parent
6552765a02
commit
62493ae818
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ static bool IsItanium(std::string_view name) {
|
|||
}
|
||||
|
||||
namespace Common {
|
||||
std::string DemangleSymbol(const std::string&& mangled) {
|
||||
std::string DemangleSymbol(const std::string& mangled) {
|
||||
if (mangled.size() > 0) {
|
||||
if (IsItanium(mangled)) {
|
||||
#ifdef _MSC_VER
|
||||
|
|
|
|||
|
|
@ -10,6 +10,6 @@
|
|||
|
||||
namespace Common {
|
||||
|
||||
std::string DemangleSymbol(const std::string&& mangled);
|
||||
std::string DemangleSymbol(const std::string& mangled);
|
||||
|
||||
} // namespace Common
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue