CMake/Tests/CompileFeatures/cxx_nullptr.cpp

10 lines
68 B
C++
Raw Normal View History

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