nameof_module/nameofcpp
Terik23 fb05b3394a
2016-10-05 14:15:30 +05:00

17 lines
No EOL
292 B
Text

```cpp
///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”
```