This commit is contained in:
Terik23 2016-10-05 14:15:30 +05:00 committed by GitHub
parent 9e76ea3771
commit fb05b3394a

View file

@ -1,3 +1,5 @@
```cpp
///Used to obtain the string name of a variable. ///Used to obtain the string name of a variable.
#define nameof(name) template_nameof((name), #name) #define nameof(name) template_nameof((name), #name)
@ -11,3 +13,5 @@ const char* template_nameof(T test, const char* name)
// int test = 0; // int test = 0;
// std::cout << nameof(test) << std::endl; // std::cout << nameof(test) << std::endl;
// prints "test” // prints "test”
```