mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 09:48:20 +00:00
e96fd56fbd
Rename to better names More comments Less branches
10 lines
265 B
C++
10 lines
265 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Demangler {
|
|
// Given a char* containing a mangled name, return a std::string containing the demangled name.
|
|
// If the function fails for any reason, it returns an empty string.
|
|
std::string Demangle(const char* name);
|
|
}
|