mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
210b0b883b
The only use of this define was removed in commit
5f724b6ca1
, over a year ago.
The define was there to prevent the LibC build we built before libstdc++
from complaining about missing libgcc symbols. However, as noted in that
commit, we never actually needed to build LibC at all.
28 lines
553 B
C++
28 lines
553 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/StringView.h>
|
|
#include <cxxabi.h>
|
|
|
|
namespace AK {
|
|
|
|
inline String demangle(const StringView& name)
|
|
{
|
|
int status = 0;
|
|
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
|
|
auto string = String(status == 0 ? demangled_name : name);
|
|
if (status == 0)
|
|
kfree(demangled_name);
|
|
return string;
|
|
}
|
|
|
|
}
|
|
|
|
using AK::demangle;
|