yuzu/src/common/demangle.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
242 B
C++
Raw Normal View History

2023-01-13 22:06:13 +01:00
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
namespace Common {
2023-01-14 06:12:41 +01:00
std::string DemangleSymbol(const std::string& mangled);
2023-01-13 22:06:13 +01:00
2023-01-14 06:12:41 +01:00
} // namespace Common