This commit is contained in:
parent
6291bc438e
commit
7b1ab54651
1 changed files with 3 additions and 0 deletions
|
@ -60,10 +60,13 @@ int main() {
|
||||||
constexpr auto d = nameof_variable(::someVar);
|
constexpr auto d = nameof_variable(::someVar);
|
||||||
constexpr auto e = nameof_variable(&SomeStruct::SomeMethod);
|
constexpr auto e = nameof_variable(&SomeStruct::SomeMethod);
|
||||||
constexpr auto f = nameof_function(someVar.SomeMethod());
|
constexpr auto f = nameof_function(someVar.SomeMethod());
|
||||||
|
constexpr auto g = nameof_type(SomeStruct);
|
||||||
|
|
||||||
std::cout << a << std::endl; // SomeField
|
std::cout << a << std::endl; // SomeField
|
||||||
std::cout << b << std::endl; // SomeField
|
std::cout << b << std::endl; // SomeField
|
||||||
std::cout << c << std::endl; // someVar
|
std::cout << c << std::endl; // someVar
|
||||||
std::cout << d << std::endl; // someVar
|
std::cout << d << std::endl; // someVar
|
||||||
std::cout << e << std::endl; // SomeMethod
|
std::cout << e << std::endl; // SomeMethod
|
||||||
std::cout << f << std::endl; // SomeMethod()
|
std::cout << f << std::endl; // SomeMethod()
|
||||||
|
std::cout << g << std::endl; // SomeStruct
|
||||||
}
|
}
|
Loading…
Reference in a new issue