title | ms.date | f1_keywords | helpviewer_keywords | description | |||
---|---|---|---|---|---|---|---|
Warning C26490 |
03/22/2018 |
|
|
CppCoreCheck rule C26490 that enforces C++ Core Guidelines Type.1 |
Don't use
reinterpret_cast
.
void function(void* ptr)
{
std::size_t val = reinterpret_cast<std::size_t>(ptr); // C26490, Don't use reinterpret_cast
}