mirror of
https://github.com/Kitware/CMake.git
synced 2025-07-03 02:26:24 +08:00
11 lines
69 B
C++
11 lines
69 B
C++
|
|
void someFunc(int*)
|
|
{
|
|
|
|
}
|
|
|
|
void otherFunc()
|
|
{
|
|
someFunc(nullptr);
|
|
}
|