This commit is contained in:
lizzie 2026-04-26 19:16:50 +00:00
parent 6552765a02
commit 62493ae818
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -10,6 +10,6 @@
namespace Common {
std::string DemangleSymbol(const std::string&& mangled);
std::string DemangleSymbol(const std::string& mangled);
} // namespace Common