update readme

This commit is contained in:
Neargye 2018-04-04 20:20:50 +05:00
parent c9024c9f1c
commit d7573e556e

View file

@ -113,7 +113,7 @@ NAMEOF_FULL(&SomeStruct::SomeMethod2) -> "&SomeStruct::SomeMethod2"
NAMEOF_FULL(std::string) -> "std::string"
```
* If compiling without RTTI, you need use the NAMEOF_TYPE() for get name of type.
* By default nameof work with RTTI, but can work without RTTI. If compiling without RTTI, you need use the NAMEOF_TYPE() for get name of type.
```cpp
NAMEOF_TYPE(int[]) -> "int[]"