mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2025-07-25 13:02:21 +00:00
13 lines
183 B
C++
13 lines
183 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <typeinfo>
|
|
|
|
std::string demangle(const char* name);
|
|
|
|
template <class T>
|
|
std::string type(const T& t) {
|
|
|
|
return demangle(typeid(t).name());
|
|
}
|