Raw File
cxx_nullptr.cpp

void someFunc(int*)
{
}

void otherFunc()
{
  someFunc(nullptr);
}
back to top