mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
ae3ffdd521
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by default, but can be overridden by build flags. This is a step towards integrating Jakt and AK types.
34 lines
657 B
C++
34 lines
657 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef KERNEL
|
|
|
|
# include <AK/String.h>
|
|
# include <AK/StringView.h>
|
|
# include <cxxabi.h>
|
|
|
|
namespace AK {
|
|
|
|
inline String demangle(StringView name)
|
|
{
|
|
int status = 0;
|
|
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
|
|
auto string = String(status == 0 ? StringView { demangled_name, strlen(demangled_name) } : name);
|
|
if (status == 0)
|
|
free(demangled_name);
|
|
return string;
|
|
}
|
|
|
|
}
|
|
|
|
# if USING_AK_GLOBALLY
|
|
using AK::demangle;
|
|
# endif
|
|
|
|
#endif
|