CMake/Tests/CompileFeatures/cxx_nullptr.cpp

11 lines
69 B
C++
Raw Normal View History

2014-04-03 19:34:47 +02:00
void someFunc(int*)
{
}
void otherFunc()
{
someFunc(nullptr);
}