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