mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-21 11:46:59 +02:00
cs
This commit is contained in:
parent
71959b8fab
commit
60b8d2a442
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