10 lines
68 B
C++
10 lines
68 B
C++
|
|
void someFunc(int*)
|
|
{
|
|
}
|
|
|
|
void otherFunc()
|
|
{
|
|
someFunc(nullptr);
|
|
}
|