mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-11-30 12:45:58 +00:00
9 lines
149 B
C++
9 lines
149 B
C++
#pragma once
|
|
|
|
template<typename TEnum>
|
|
class enum_helper {
|
|
public:
|
|
static constexpr const char* to_string(TEnum value) {
|
|
return __FUNCSIG__;
|
|
}
|
|
}; |