Update src/stacktraces.cpp

Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com>
This commit is contained in:
UdjinM6 2020-08-11 12:07:56 +03:00 committed by GitHub
parent d8b676d630
commit 2429a21b36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -691,7 +691,7 @@ crash_info GetCrashInfoFromException(const std::exception_ptr& e)
if (type && (strlen(type->name()) > 0)) { if (type && (strlen(type->name()) > 0)) {
return DemangleSymbol(type->name()); return DemangleSymbol(type->name());
} }
return std::string("<unknown>"); return "<unknown>";
}; };
try { try {