nameof_module/nameof.cpp
Terik23 75f727e63c
2016-10-05 14:16:29 +05:00

13 lines
No EOL
279 B
C++

///Used to obtain the string name of a variable.
#define nameof(name) template_nameof((name), #name)
template <typename T>
const char* template_nameof(T test, const char* name)
{
return name;
}
// int test = 0;
// std::cout << nameof(test) << std::endl;
// prints "test”