CMake/Tests/CompileFeatures/cxx_nullptr.cpp
2014-04-08 11:05:55 +02:00

11 lines
69 B
C++

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