CMake/Tests/CompileFeatures/cxx_nullptr.cpp

11 lines
69 B
C++
Raw Normal View History

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