13 lines
190 B
C++
13 lines
190 B
C++
#ifndef CPPTRACE_DEMANGLE_HPP
|
|
#define CPPTRACE_DEMANGLE_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace cpptrace {
|
|
namespace detail {
|
|
std::string demangle(const std::string&);
|
|
}
|
|
}
|
|
|
|
#endif
|