cmake/Tests/CompileFeatures/cxx_nullptr.cpp
2016-07-09 11:21:54 +02:00

10 lines
68 B
C++

void someFunc(int*)
{
}
void otherFunc()
{
someFunc(nullptr);
}