16 lines
214 B
C++
16 lines
214 B
C++
#ifdef CPPTRACE_DEMANGLE_WITH_NOTHING
|
|
|
|
#include "demangle.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace cpptrace {
|
|
namespace detail {
|
|
std::string demangle(const std::string& name) {
|
|
return name;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|